mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-04-27 10:26:01 +02:00
Fixed zero size string in the array problem.
This commit is contained in:
parent
dac5c60608
commit
6a349d0b28
@ -376,8 +376,10 @@ public:
|
|||||||
int ret = push_proc(obj, off);
|
int ret = push_proc(obj, off);
|
||||||
if (ret != 0) return ret;
|
if (ret != 0) return ret;
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
cs_ = ACS_STR_VALUE;
|
cs_ = ACS_STR_VALUE;
|
||||||
fixed_trail_again = true;
|
fixed_trail_again = true;
|
||||||
|
}
|
||||||
|
|
||||||
} else if(0x90 <= selector && selector <= 0x9f) { // FixArray
|
} else if(0x90 <= selector && selector <= 0x9f) { // FixArray
|
||||||
int ret = push_aggregate<fix_tag>(
|
int ret = push_aggregate<fix_tag>(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user