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
System Spec:
Fedora 27, 64 Bit uname -r: 4.15.15-300.fc27.x86_64
Seems to be a classic lack of null terminators. fread reads data and strcmp tries to compare them, but strcmp works on strings, which must be null-terminated. Using memcmp or appending null terminators are easy, viable fixes.
The text was updated successfully, but these errors were encountered:
Branch is
wallet_new
.Test Log:
Note those lines:
System Spec:
Fedora 27, 64 Bit
uname -r
: 4.15.15-300.fc27.x86_64Seems to be a classic lack of null terminators.
fread
reads data andstrcmp
tries to compare them, butstrcmp
works on strings, which must be null-terminated. Usingmemcmp
or appending null terminators are easy, viable fixes.The text was updated successfully, but these errors were encountered: