mneumann / rust-msgpack

[DEPRECATED] msgpack.org implementation for Rust language. Please use https://github.com/3Hren/msgpack-rust
122 stars 31 forks source link

Properly decode `None` variants #43

Closed drbawb closed 9 years ago

drbawb commented 9 years ago

This fixes an issue where a None corrupts the next value in the stream. When a None variant is encountered this patch consumes the byte which was used to represent it.

This fixes issue #41.