Fix writeId in InoxSerializer
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
.