projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
f0c07f2
)
A potential recursion breaker.
Jarkko Hietaniemi [Sat, 10 Nov 2001 15:05:56 +0000 (15:05 +0000)]
p4raw-id: //depot/perl@12931
sv.c
patch
|
blob
|
blame
|
history
diff --git
a/sv.c
b/sv.c
index
19ce50a
..
4045928
100644
(file)
--- a/
sv.c
+++ b/
sv.c
@@
-10407,7
+10407,7
@@
Perl_sv_recode_to_utf8(pTHX_ SV *sv, SV *encoding)
SPAGAIN;
uni = POPs;
PUTBACK;
- s = SvPVutf8(uni, len);
+ s = SvPV(uni, len);
if (s != SvPVX(sv)) {
SvGROW(sv, len);
Move(s, SvPVX(sv), len, char);