This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0bb09c1
)
[patch] plug PL_cshname leak
author
Doug MacEachern
<dougm@covalent.net>
Thu, 2 Aug 2001 20:59:04 +0000
(13:59 -0700)
committer
Jarkko Hietaniemi
<jhi@iki.fi>
Fri, 3 Aug 2001 12:11:57 +0000
(12:11 +0000)
Message-ID: <Pine.LNX.4.21.
0108022058020
.8991-100000@mako.covalent.net>
p4raw-id: //depot/perl@11562
sv.c
patch
|
blob
|
blame
|
history
diff --git
a/sv.c
b/sv.c
index
7fbe14a
..
33a87b8
100644
(file)
--- 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;