Skip to content

Commit

Permalink
Merge pull request #8844
Browse files Browse the repository at this point in the history
7206ef8 cryptonote_basic: fix amount overflow detection on 32-bit systems (jeffro256)
  • Loading branch information
luigi1111 committed Jun 27, 2023
2 parents 1df7260 + 7206ef8 commit 794f59b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cryptonote_basic/cryptonote_format_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1229,7 +1229,7 @@ namespace cryptonote
char *end = NULL;
errno = 0;
const unsigned long long ull = strtoull(buf, &end, 10);
CHECK_AND_ASSERT_THROW_MES(ull != ULONG_MAX || errno == 0, "Failed to parse rounded amount: " << buf);
CHECK_AND_ASSERT_THROW_MES(ull != ULLONG_MAX || errno == 0, "Failed to parse rounded amount: " << buf);
CHECK_AND_ASSERT_THROW_MES(ull != 0 || amount == 0, "Overflow in rounding");
return ull;
}
Expand Down

0 comments on commit 794f59b

Please sign in to comment.