Compare commits
2 Commits
2426a8c1dd
...
a67354cd84
Author | SHA1 | Date | |
---|---|---|---|
|
a67354cd84 | ||
|
2cf047f4ff |
@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
AbstractParser::AbstractParser(const char *resource) : _resource(NULL)
|
AbstractParser::AbstractParser(const char *resource) : _resource(NULL)
|
||||||
{
|
{
|
||||||
|
//Could use strdup instead, but has bigger flash memory footprint :(, sticking to this technique instead.
|
||||||
_resource = (char *) malloc((strlen(resource) * sizeof(char)) + 1); //+1 for the string terminating character
|
_resource = (char *) malloc((strlen(resource) * sizeof(char)) + 1); //+1 for the string terminating character
|
||||||
strcpy(_resource, resource);
|
strcpy(_resource, resource);
|
||||||
}
|
}
|
||||||
|
@ -37,6 +37,6 @@
|
|||||||
#define SOFT_VERSION "1.6.5" //Removed the sd card mount and unmount api calls, replaced with the sdCardAction api call which takes a parameter (does the same thing)
|
#define SOFT_VERSION "1.6.5" //Removed the sd card mount and unmount api calls, replaced with the sdCardAction api call which takes a parameter (does the same thing)
|
||||||
#define SOFT_VERSION "1.6.6" //Removed useless INIT state that was like the LINE_BREAK state and added '-' as an allowed PARAM and VALUE character
|
#define SOFT_VERSION "1.6.6" //Removed useless INIT state that was like the LINE_BREAK state and added '-' as an allowed PARAM and VALUE character
|
||||||
#define SOFT_VERSION "1.6.7" //Changed the way we store and return the 3 letter month abbreviation
|
#define SOFT_VERSION "1.6.7" //Changed the way we store and return the 3 letter month abbreviation
|
||||||
|
#define SOFT_VERSION "1.6.8" //Finally fixed the random crash issue concerning the servers :)
|
||||||
|
|
||||||
#endif //VERSIONS_H
|
#endif //VERSIONS_H
|
||||||
|
Loading…
Reference in New Issue
Block a user