mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-26 05:32:25 +00:00
Use wider type for overflow check on LLP64 platforms like Win64, found by clang-cl -Wtautological
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230684 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
0e93eb80f3
commit
7a481adc12
@ -1422,7 +1422,7 @@ enlarge(struct parse *p, sopno size)
|
||||
if (p->ssize >= size)
|
||||
return;
|
||||
|
||||
if ((unsigned long)size > SIZE_MAX / sizeof(sop)) {
|
||||
if ((uintptr_t)size > SIZE_MAX / sizeof(sop)) {
|
||||
SETERROR(REG_ESPACE);
|
||||
return;
|
||||
}
|
||||
@ -1443,7 +1443,7 @@ static void
|
||||
stripsnug(struct parse *p, struct re_guts *g)
|
||||
{
|
||||
g->nstates = p->slen;
|
||||
if ((unsigned long)p->slen > SIZE_MAX / sizeof(sop)) {
|
||||
if ((uintptr_t)p->slen > SIZE_MAX / sizeof(sop)) {
|
||||
g->strip = p->strip;
|
||||
SETERROR(REG_ESPACE);
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user