Replace 3 uses of RX_PRELEN(r) with plen, which has the same value.
authorNicholas Clark <nick@ccl4.org>
Fri, 28 Dec 2007 23:15:47 +0000 (23:15 +0000)
committerNicholas Clark <nick@ccl4.org>
Fri, 28 Dec 2007 23:15:47 +0000 (23:15 +0000)
(But isn't a pointer dereference. Or about to become a calculation.)

p4raw-id: //depot/perl@32756

regcomp.c

index 481d3a6..5c7ee09 100644 (file)
--- a/regcomp.c
+++ b/regcomp.c
@@ -4290,7 +4290,7 @@ redo_first_pass:
        U16 reganch = (U16)((r->extflags & RXf_PMf_STD_PMMOD) >> 12);
        const char *fptr = STD_PAT_MODS;        /*"msix"*/
        char *p;
-        r->wraplen = RX_PRELEN(r) + has_minus + has_p + has_runon
+        r->wraplen = plen + has_minus + has_p + has_runon
             + (sizeof(STD_PAT_MODS) - 1)
             + (sizeof("(?:)") - 1);
 
@@ -4318,10 +4318,10 @@ redo_first_pass:
         }
 
         *p++ = ':';
-        Copy(RExC_precomp, p, RX_PRELEN(r), char);
+        Copy(RExC_precomp, p, plen, char);
        assert ((r->wrapped - p) < 16);
        r->pre_prefix = p - r->wrapped;
-        p += RX_PRELEN(r);
+        p += plen;
         if (has_runon)
             *p++ = '\n';
         *p++ = ')';