Closed Heymdall closed 6 years ago
Right now small negative int64 numbers converted incorrectly, because upper bits being filled from very small number, like -0.00000412, and writeInt32BE just ignore it and fills it with 00 instead of FF.
-0.00000412
writeInt32BE
00
FF
All committers have signed the CLA.
Right now small negative int64 numbers converted incorrectly, because upper bits being filled from very small number, like
-0.00000412
, andwriteInt32BE
just ignore it and fills it with00
instead ofFF
.