perlio.c: (Coverity) eliminate temp ptr that confuses Coverity into thinking there...
[p5sagit/p5-mst-13.2.git] / regexec.c
index 34fd1ac..87c0e99 100644 (file)
--- a/regexec.c
+++ b/regexec.c
@@ -3528,7 +3528,7 @@ S_regmatch(pTHX_ const regmatch_info *reginfo, regnode *prog)
                /* No need to save/restore up to this paren */
                I32 parenfloor = scan->flags;
 
-               if (next && (OP(PREVOPER(next)) == NOTHING)) /* LONGJMP */
+               if (OP(PREVOPER(next)) == NOTHING) /* LONGJMP */
                    next += ARG(next);
                /* XXXX Probably it is better to teach regpush to support
                   parenfloor > PL_regsize... */