You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this results in UnmarshalBinary consuming only part of the data emitted by MarshalBinary
the remaning part causes all sorts of uncertainty in the deserialization process of complex data structures.
WriteTo should consider b.length to decide how many words it should marshal
The text was updated successfully, but these errors were encountered:
Due to calls like
Delete()
, size ofset
andlength
could be out of sync.Whole
b.set
is marshaled;but only
nWords
amount of uint64 is unmarshaledthis results in
UnmarshalBinary
consuming only part of the data emitted byMarshalBinary
the remaning part causes all sorts of uncertainty in the deserialization process of complex data structures.
WriteTo
should considerb.length
to decide how many words it should marshalThe text was updated successfully, but these errors were encountered: