mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-29 07:42:04 +00:00
Fixing a trivial warning in an assertion, r=crowder
This commit is contained in:
parent
17ba873b3d
commit
ad503359ff
@ -2870,7 +2870,7 @@ ExecuteREBytecode(REGlobalData *gData, REMatchState *x)
|
||||
cap = &x->parens[parenIndex];
|
||||
cap->length = x->cp - (gData->cpbegin + cap->index);
|
||||
JS_ASSERT(x->cp >= (gData->cpbegin + cap->index));
|
||||
JS_ASSERT(cap->length <= (gData->cpend - gData->cpbegin));
|
||||
JS_ASSERT((int)cap->length <= (gData->cpend - gData->cpbegin));
|
||||
op = (REOp) *pc++;
|
||||
|
||||
if (!result)
|
||||
|
Loading…
Reference in New Issue
Block a user