projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
86a885e
)
Fix leak introduced by change #32873, thanks to Nicholas
Rafael Garcia-Suarez [Wed, 9 Jan 2008 12:33:27 +0000 (12:33 +0000)]
p4raw-link: @32873 on //depot/perl:
3a28f3fb1bfd44e4e3dfe6842af867c8c1c9de28
p4raw-id: //depot/perl@32915
pp_hot.c
patch
|
blob
|
blame
|
history
diff --git
a/pp_hot.c
b/pp_hot.c
index
d391272
..
a24f802
100644
(file)
--- a/
pp_hot.c
+++ b/
pp_hot.c
@@
-733,7
+733,7
@@
PP(pp_print)
ENTER;
if( PL_op->op_type == OP_SAY ) {
/* local $\ = "\n" */
- SAVESPTR(PL_ors_sv);
+ SAVEGENERICSV(PL_ors_sv);
PL_ors_sv = newSVpvs("\n");
}
call_method("PRINT", G_SCALAR);