mirror of
https://github.com/jedisct1/minisign.git
synced 2025-04-04 19:37:48 +03:00
Turn a redundant check into an assertion
This commit is contained in:
parent
48bdcdc932
commit
4dcfeb8e7c
1 changed files with 2 additions and 1 deletions
|
@ -106,7 +106,8 @@ message_load(size_t *message_len, const char *message_file, int hashed)
|
|||
(message_len_ = ftello(fp)) == (off_t) -1) {
|
||||
exit_err(message_file);
|
||||
}
|
||||
if (hashed == 0 && message_len_ > (off_t) 1L << 30) {
|
||||
assert(hashed == 0);
|
||||
if (message_len_ > (off_t) 1L << 30) {
|
||||
exit_msg("Data has to be smaller than 1 Gb. Or use the -H option.");
|
||||
}
|
||||
if ((uintmax_t) message_len_ > (uintmax_t) SIZE_MAX ||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue