From: Dave Mitchell Date: Sat, 5 Nov 2005 01:57:23 +0000 (+0000) Subject: pp_print didn't extend the stack before pushing its return value X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=e52fd6f4ebd87d6146c934dfc974265434a96d9b;p=p5sagit%2Fp5-mst-13.2.git pp_print didn't extend the stack before pushing its return value p4raw-id: //depot/perl@26009 --- diff --git a/pp_hot.c b/pp_hot.c index 967f2d5..2a08525 100644 --- a/pp_hot.c +++ b/pp_hot.c @@ -677,12 +677,12 @@ PP(pp_print) } } SP = ORIGMARK; - PUSHs(&PL_sv_yes); + XPUSHs(&PL_sv_yes); RETURN; just_say_no: SP = ORIGMARK; - PUSHs(&PL_sv_undef); + XPUSHs(&PL_sv_undef); RETURN; }