make Copy On Write work once again
authorNicholas Clark <nick@ccl4.org>
Sat, 25 Jan 2003 00:25:50 +0000 (00:25 +0000)
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>
Mon, 27 Jan 2003 20:32:01 +0000 (20:32 +0000)
Message-ID: <20030125002550.GG278@Bagpuss.unfortu.net>

p4raw-id: //depot/perl@18595

sv.h

diff --git a/sv.h b/sv.h
index a4ea892..82ef302 100644 (file)
--- a/sv.h
+++ b/sv.h
@@ -1055,7 +1055,7 @@ otherwise.
 
 #ifdef PERL_COPY_ON_WRITE
 #  define SvRELEASE_IVX(sv)   ((void)((SvFLAGS(sv) & (SVf_OOK|SVf_READONLY|SVf_FAKE)) \
-                               && sv_release_IVX(sv)))
+                               && Perl_sv_release_IVX(aTHX_ sv)))
 #  define SvIsCOW_normal(sv)   (SvIsCOW(sv) && SvLEN(sv))
 #else
 #  define SvRELEASE_IVX(sv)   ((void)SvOOK_off(sv))