diff options
author | Nicholas Clark <nick@ccl4.org> | 2004-12-29 21:04:43 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2004-12-29 21:04:43 +0000 |
commit | 9b9d7ce8d832b4fbcb890a8f326b7b630d9396fa (patch) | |
tree | cbf9acfeba454869845f4267eedabe2e9bb09be0 /pp_sys.c | |
parent | 8c51517677f7444669d829b895c0ed1364734bbc (diff) | |
download | perl-9b9d7ce8d832b4fbcb890a8f326b7b630d9396fa.tar.gz |
Ooops. Fix unitialised variable
p4raw-id: //depot/perl@23705
Diffstat (limited to 'pp_sys.c')
-rw-r--r-- | pp_sys.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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); |