This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Perl_eval_pv() leaks 4 bytes every time it is called because it
authorGurusamy Sarathy <gsar@cpan.org>
Tue, 6 Jun 2000 00:42:59 +0000 (00:42 +0000)
committerGurusamy Sarathy <gsar@cpan.org>
Tue, 6 Jun 2000 00:42:59 +0000 (00:42 +0000)
commitf807eda9ff3570fa55edf97b589a9c028d9c5bb8
tree8ef406e88c4714c888ee606dae3892aca44d757b
parent63caf6080702341afbd2806f3d0b2bb9ccae687d
Perl_eval_pv() leaks 4 bytes every time it is called because it
does a PUSHMARK that's never ever POPMARKed; in general, only
Perl_call_[sp]v() need a PUSHMARK for incoming arguments;
Perl_eval_[sp]v() don't because they don't take any incoming
arguments (this leak has been around since the original version
of perl_eval_pv() in 5.003_97e)

p4raw-id: //depot/perl@6201
perl.c