Change 30043 by [EMAIL PROTECTED] on 2007/01/27 22:48:39
Change 30034 wasn't enough to silence the warnings - also need to
pass a never-NULL parameter to newPADOP from newGVOP
Affected files ...
... //depot/perl/op.c#883 edit
Differences ...
==== //depot/perl/op.c#883 (text) ====
Index: perl/op.c
--- perl/op.c#882~30034~ 2007-01-27 09:03:59.000000000 -0800
+++ perl/op.c 2007-01-27 14:48:39.000000000 -0800
@@ -3452,9 +3452,9 @@
assert(gv);
#ifdef USE_ITHREADS
GvIN_PAD_on(gv);
- return newPADOP(type, flags, SvREFCNT_inc_simple(gv));
+ return newPADOP(type, flags, SvREFCNT_inc_simple_NN(gv));
#else
- return newSVOP(type, flags, SvREFCNT_inc_simple(gv));
+ return newSVOP(type, flags, SvREFCNT_inc_simple_NN(gv));
#endif
}
End of Patch.