Important Update:
- ApplicationCore: - Rename ConfigParser -> JSONparser - Make JSONparser a public parameter - DataTreeCore: - Bug fix: Insufficient memory allocation on SetValue if Len = -1
This commit is contained in:
@@ -371,7 +371,7 @@ bool CDataTree::SetValue( TDataMember * Member, EDataType Type, const char * Va
|
||||
|
||||
// Check Length
|
||||
if (Len == -1) {
|
||||
Len = strlen( Value );
|
||||
Len = strlen(Value)+1;
|
||||
}
|
||||
|
||||
// Create copy of value
|
||||
|
||||
Reference in New Issue
Block a user