Bug fixes:

- DataTreeCore:
  - Incorrectly added new child to parent
- JSONparseCore:
  - Printed incomplete object (false error)
This commit is contained in:
Charl Wentzel
2018-11-20 12:59:21 +02:00
parent 6263c0f508
commit bd85621b40
2 changed files with 3 additions and 3 deletions

View File

@@ -260,7 +260,7 @@ CDataMember * CDataMember::GetChild( const char * Path, bool Create )
Child = &((*Child)->NextPeer);
}
if (!*Child && Create) {
*Child = new CDataMember( this, Key, KeyLen );
*Child = new CDataMember( Member, Key, KeyLen );
}
}