Skip to content

Fix writeId in InoxSerializer

Viktor Kuncak requested to merge fix-serializer-writeid into master

Created by: gsps

In InoxSerializer, writeId(255) produces 0xff, but during deserialization readId() will continue to read past that byte, corrupting the input stream. Instead, writeId(255) should produce 0xff 0x00.

Merge request reports