summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorAnton Berezin <tobez@tobez.org>2003-07-14 15:50:35 +0200
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2003-07-17 20:59:15 +0000
commit2d862febb32638bf1f7663134644cf7e37f284ad (patch)
tree9b1d8def509167cad1b1e33d5b12844584b891df /sv.c
parentb5da07fd59db94cc5a957ce65e6dff0d69552ce8 (diff)
downloadperl-2d862febb32638bf1f7663134644cf7e37f284ad.tar.gz
fix $^N-related coredump
Message-ID: <20030714115035.GA10971@heechee.tobez.org> p4raw-id: //depot/perl@20163
Diffstat (limited to 'sv.c')
-rw-r--r--sv.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sv.c b/sv.c
index 59d0b12305..251fd8ab49 100644
--- a/sv.c
+++ b/sv.c
@@ -11474,6 +11474,7 @@ perl_clone_using(PerlInterpreter *proto_perl, UV flags,
PL_regstartp = (I32*)NULL;
PL_regendp = (I32*)NULL;
PL_reglastparen = (U32*)NULL;
+ PL_reglastcloseparen = (U32*)NULL;
PL_regtill = Nullch;
PL_reg_start_tmp = (char**)NULL;
PL_reg_start_tmpl = 0;