diff options
author | Doug MacEachern <dougm@covalent.net> | 2001-08-02 13:59:04 -0700 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-08-03 12:11:57 +0000 |
commit | 74f1b2b883ab0bad0d2cf0e913f3d0725b00b68f (patch) | |
tree | 6fbac1d5b65a38a199076f8f0c1633bb7c5d507e /sv.c | |
parent | 0bb09c15ac0229062f9a94c92742bea0b134228e (diff) | |
download | perl-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |