summaryrefslogtreecommitdiff
path: root/op.c
diff options
context:
space:
mode:
authorDoug MacEachern <dougm@covalent.net>2001-07-09 13:16:49 -0700
committerJarkko Hietaniemi <jhi@iki.fi>2001-07-10 13:47:20 +0000
commitf3e31eb5cfe757531e8a22aaae8d82ce0c167b3c (patch)
tree511c53a00cc817c184b1c4fd20150604f2e76d17 /op.c
parentd0c93ae95d925e05df5353ae7c3d57a09e757774 (diff)
downloadperl-f3e31eb5cfe757531e8a22aaae8d82ce0c167b3c.tar.gz
[patch] undef &xsub for 1,2
Message-ID: <Pine.LNX.4.21.0107092012570.1913-100000@mako.covalent.net> (This version of the patch with a comment from Gisle.) p4raw-id: //depot/perl@11258
Diffstat (limited to 'op.c')
-rw-r--r--op.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/op.c b/op.c
index baa62fb927..eba79ef16f 100644
--- a/op.c
+++ b/op.c
@@ -4165,9 +4165,10 @@ Perl_cv_undef(pTHX_ CV *cv)
#ifdef USE_ITHREADS
if (CvFILE(cv) && !CvXSUB(cv)) {
+ /* for XSUBs CvFILE point directly to static memory; __FILE__ */
Safefree(CvFILE(cv));
- CvFILE(cv) = 0;
}
+ CvFILE(cv) = 0;
#endif
if (!CvXSUB(cv) && CvROOT(cv)) {