summaryrefslogtreecommitdiff
path: root/dist/Devel-PPPort/parts/inc/misc
diff options
context:
space:
mode:
Diffstat (limited to 'dist/Devel-PPPort/parts/inc/misc')
-rw-r--r--dist/Devel-PPPort/parts/inc/misc4
1 files changed, 2 insertions, 2 deletions
diff --git a/dist/Devel-PPPort/parts/inc/misc b/dist/Devel-PPPort/parts/inc/misc
index eb1e2b9eb8..86d7fdeed0 100644
--- a/dist/Devel-PPPort/parts/inc/misc
+++ b/dist/Devel-PPPort/parts/inc/misc
@@ -1434,8 +1434,8 @@ check_HeUTF8(utf8_key)
hash = newHV();
key = SvPV(utf8_key, klen);
- if (SvUTF8(utf8_key)) klen *= -1;
- hv_store(hash, key, klen, newSVpvs("string"), 0);
+ hv_store(hash, key, SvUTF8(utf8_key) ? -klen : klen,
+ newSVpvs("string"), 0);
hv_iterinit(hash);
ent = hv_iternext(hash);
assert(ent);