From 86f0d186b5906b677cf64db5216b59d27c937db6 Mon Sep 17 00:00:00 2001 From: Nicholas Clark Date: Sat, 26 Feb 2005 09:33:30 +0000 Subject: [PATCH] SvUTF8 can be present on scalars other than PVs (specifically references with overloaded stringification) p4raw-id: //depot/perl@23997 --- dump.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dump.c b/dump.c index 5f0bef2..00f989f 100644 --- a/dump.c +++ b/dump.c @@ -1194,7 +1194,8 @@ Perl_do_sv_dump(pTHX_ I32 level, PerlIO *file, SV *sv, I32 nest, I32 maxnest, bo sv_catpv(d, "TYPED,"); break; } - if ((SvPOK(sv) || SvPOKp(sv)) && SvUTF8(sv)) + /* SVphv_SHAREKEYS is also 0x20000000 */ + if ((type != SVt_PVHV) && SvUTF8(sv)) sv_catpv(d, "UTF8"); if (*(SvEND(d) - 1) == ',') -- 2.7.4