diff options
Diffstat (limited to 'src/marshal.cpp')
-rw-r--r-- | src/marshal.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/marshal.cpp b/src/marshal.cpp index 8f2e879..0675277 100644 --- a/src/marshal.cpp +++ b/src/marshal.cpp @@ -644,9 +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->append(key,md); // note: this can lead to unmarshalling another object! + result->append(key,md); } - result->sort(); + //printf("--- end unmarshalMemberSDict\n"); return result; } |