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:
Charl Wentzel
2017-07-29 12:45:45 +02:00
parent b7033bea81
commit e71157b9ec
3 changed files with 12 additions and 14 deletions

View File

@@ -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