mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-13 09:33:50 +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)
|
if (p->ssize >= size)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if ((unsigned long)size > SIZE_MAX / sizeof(sop)) {
|
if ((uintptr_t)size > SIZE_MAX / sizeof(sop)) {
|
||||||
SETERROR(REG_ESPACE);
|
SETERROR(REG_ESPACE);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -1443,7 +1443,7 @@ static void
|
|||||||
stripsnug(struct parse *p, struct re_guts *g)
|
stripsnug(struct parse *p, struct re_guts *g)
|
||||||
{
|
{
|
||||||
g->nstates = p->slen;
|
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;
|
g->strip = p->strip;
|
||||||
SETERROR(REG_ESPACE);
|
SETERROR(REG_ESPACE);
|
||||||
return;
|
return;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user