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
msgp: fuzz test: fix overflow on 32-bit systems (#412)
On 32-bit systems, int(sz) can yield a negative value,
which in turn leads to us passing a negative value to
fwd.Reader.Next. (See philhofer/fwd#36.)
The simplest fix here is just to check that the conversion
doesn't yield a negative value.
0 commit comments