-
-
Notifications
You must be signed in to change notification settings - Fork 137
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
Serialization of multiple nesting levels has issues #67
Comments
If leave out level3b, that is '08 02' 's ByteAccumulator mistakenly linked to '12 02' 's. |
Thank you for reporting this. And this fails with |
fail with master, I'll try the other two |
Fail with all version, master(2.9.0.pr3-SNAPSHOT), 2.8.7 and 2.9.0.pr2. |
With latest snapshot version 2.9.0.pr3-SNAPSHOT, field of bigger tag will be serialized between fields of smaller tag. Below is the test case.
The serialization result is(in hex)
08 01 12 0a 12 02 08 03 08 02 12 02 08 04
While the correct result is(in hex)
08 01 12 0a 08 02 12 02 08 03 12 02 08 04
'08 02' is inserted between list element '12 02 08 03' and '12 02 08 04'
The text was updated successfully, but these errors were encountered: