Change 23603 by [EMAIL PROTECTED] on 2004/12/03 17:02:43
Fix a typo in an assert(). It helps to compile with -DDEBUGGING
Affected files ...
... //depot/perl/perl.c#569 edit
Differences ...
==== //depot/perl/perl.c#569 (text) ====
Index: perl/perl.c
--- perl/perl.c#568~23602~ Fri Dec 3 07:50:15 2004
+++ perl/perl.c Fri Dec 3 09:02:43 2004
@@ -4413,7 +4413,7 @@
av_push(GvAVn(PL_incgv), libdir);
}
if (subdir) {
- assert (SvREFCNT(subdr) == 1);
+ assert (SvREFCNT(subdir) == 1);
SvREFCNT_dec(subdir);
}
}
End of Patch.