diff options
Diffstat (limited to 'src/marshal.cpp')
-rw-r--r-- | src/marshal.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/marshal.cpp b/src/marshal.cpp index 4f01aa4..8f2e879 100644 --- a/src/marshal.cpp +++ b/src/marshal.cpp @@ -644,8 +644,9 @@ MemberSDict *unmarshalMemberSDict(StorageIntf *s) //printf(" unmarshaling key %s\n",key.data()); MemberDef *md = (MemberDef *)unmarshalObjPointer(s); //printf(" unmarshalMemberSDict i=%d key=%s md=%p\n",i,key.data(),md); - result->inSort(key,md); // note: this can lead to unmarshalling another object! + result->append(key,md); // note: this can lead to unmarshalling another object! } + result->sort(); //printf("--- end unmarshalMemberSDict\n"); return result; } |