summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorDoug MacEachern <dougm@covalent.net>2001-08-02 13:59:04 -0700
committerJarkko Hietaniemi <jhi@iki.fi>2001-08-03 12:11:57 +0000
commit74f1b2b883ab0bad0d2cf0e913f3d0725b00b68f (patch)
tree6fbac1d5b65a38a199076f8f0c1633bb7c5d507e /sv.c
parent0bb09c15ac0229062f9a94c92742bea0b134228e (diff)
downloadperl-74f1b2b883ab0bad0d2cf0e913f3d0725b00b68f.tar.gz
[patch] plug PL_cshname leak
Message-ID: <Pine.LNX.4.21.0108022058020.8991-100000@mako.covalent.net> p4raw-id: //depot/perl@11562
Diffstat (limited to 'sv.c')
-rw-r--r--sv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sv.c b/sv.c
index 7fbe14a46b..33a87b807f 100644
--- a/sv.c
+++ b/sv.c
@@ -9937,7 +9937,7 @@ perl_clone_using(PerlInterpreter *proto_perl, UV flags,
#ifdef CSH
PL_cshlen = proto_perl->Icshlen;
- PL_cshname = SAVEPVN(proto_perl->Icshname, PL_cshlen);
+ PL_cshname = proto_perl->Icshname; /* XXX never deallocated */
#endif
PL_lex_state = proto_perl->Ilex_state;