mirror of
https://github.com/msgpack/msgpack-python.git
synced 2026-02-06 17:59:52 +00:00
fix: CS_MAP_16 deserialize bug(line.388)
This commit is contained in:
parent
568704ed22
commit
1784746e7e
1 changed files with 1 additions and 1 deletions
|
|
@ -385,11 +385,11 @@ public class UnpackerImpl {
|
|||
obj = new Object[count*2];
|
||||
if(count == 0) { break _push; } // FIXME check IMapSchema
|
||||
//System.out.println("fixmap count:"+count);
|
||||
++top;
|
||||
stack_obj[top] = top_obj;
|
||||
stack_ct[top] = top_ct;
|
||||
stack_count[top] = top_count;
|
||||
stack_schema[top] = top_schema;
|
||||
++top;
|
||||
top_obj = obj;
|
||||
top_ct = CT_MAP_KEY;
|
||||
top_count = count;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue