Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

string or null pack / unpack crashes #77

Closed
anton-dutov opened this issue Feb 27, 2016 · 2 comments
Closed

string or null pack / unpack crashes #77

anton-dutov opened this issue Feb 27, 2016 · 2 comments

Comments

@anton-dutov
Copy link

Code

string src;
writefln("Packed '%s'", src.pack);
writefln("Unpacked '%s'", src.pack.unpack);

Output

Packed '[192]'
object.Exception@../../../.dub/packages/msgpack-d-1.0.0-beta.2/src/msgpack.d(4599): front is called with non array object. type = nil

Same issue for code

writefln("Packed '%s'", null.pack);
writefln("Unpacked '%s'", null.pack.unpack);

Packing is 192 == 0xC0 == Nil
AFAIK should be 160 == 0xA0 == Fixed string

Ok now trying unpack empty string

writefln("Unpacked '%s'", [0xA0].unpack);

Fails

msgpack.UnpackException@../../../.dub/packages/msgpack-d-1.0.0-beta.2/src/msgpack.d(305): Deserialization failure
@repeatedly
Copy link
Member

Packed '[192]'
object.Exception@../../../.dub/packages/msgpack-d-1.0.0-beta.2/src/msgpack.d(4599): front is called with non array object. type = nil

This is expected behaviour. Unpacked is a range object so you should check value type before calling Range API.

writefln("Packed '%s'", null.pack);
Packing is 192 == 0xC0 == Nil
AFAIK should be 160 == 0xA0 == Fixed string

What does this sentence mean?
null is not string so msgpack can't serialize null as fixed string.

@anton-dutov
Copy link
Author

Packing is 192 == 0xC0 == Nil
AFAIK should be 160 == 0xA0 == Fixed string

Sory, that description for first code sample

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants