[win32] propagate bugfix @ change831 from asperl
authorGurusamy Sarathy <gsar@cpan.org>
Tue, 17 Mar 1998 14:32:39 +0000 (14:32 +0000)
committerGurusamy Sarathy <gsar@cpan.org>
Tue, 17 Mar 1998 14:32:39 +0000 (14:32 +0000)
p4raw-id: //depot/win32/perl@832

regcomp.c

index 3581a5d..0f48976 100644 (file)
--- a/regcomp.c
+++ b/regcomp.c
@@ -2574,12 +2574,13 @@ pregfree(struct regexp *r)
        Safefree(r->precomp);
     if (r->subbase)
        Safefree(r->subbase);
-    if (r->substrs)
+    if (r->substrs) {
+       if (r->anchored_substr)
+           SvREFCNT_dec(r->anchored_substr);
+       if (r->float_substr)
+           SvREFCNT_dec(r->float_substr);
        Safefree(r->substrs);
-    if (r->anchored_substr)
-       SvREFCNT_dec(r->anchored_substr);
-    if (r->float_substr)
-       SvREFCNT_dec(r->float_substr);
+    }
     if (r->data) {
        int n = r->data->count;
        while (--n >= 0) {