projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
8c51517
)
Ooops. Fix unitialised variable
Nicholas Clark [Wed, 29 Dec 2004 21:04:43 +0000 (21:04 +0000)]
p4raw-id: //depot/perl@23705
pp_sys.c
patch
|
blob
|
blame
|
history
diff --git
a/pp_sys.c
b/pp_sys.c
index
edb69c2
..
356f6f2
100644
(file)
--- a/
pp_sys.c
+++ b/
pp_sys.c
@@
-1604,6
+1604,7
@@
PP(pp_sysread)
buffer = SvPVutf8_force(bufsv, blen);
/* UTF-8 may not have been set if they are all low bytes */
SvUTF8_on(bufsv);
+ buffer_utf8 = 0;
}
else {
buffer = SvPV_force(bufsv, blen);