mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-04-04 08:50:12 -05:00
Provide a non-zero divisor, CID 1519382
This commit is contained in:
parent
08113a08cb
commit
dd2aaf0804
@ -1591,7 +1591,7 @@ static u_char *pe_calc_page_hash(char *indata, uint32_t header_size,
|
||||
* The large page size is at most 4 MB.
|
||||
* https://devblogs.microsoft.com/oldnewthing/20210510-00/?p=105200 */
|
||||
pagesize = GET_UINT32_LE(indata + header_size + 56);
|
||||
if (pagesize < alignment || pagesize > 4194304) {
|
||||
if (pagesize == 0 || pagesize < alignment || pagesize > 4194304) {
|
||||
printf("Corrupted page size: 0x%08X\n", pagesize);
|
||||
return NULL; /* FAILED */
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user