From 43056537740a5320c6e631c86f517802d707b611 Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Sun, 3 Jul 2011 18:37:27 -0600 Subject: [PATCH] sv.c: hv_dup should be sv_dup Spotted by George Greer. --- sv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sv.c b/sv.c index fffa6e99ed..5e9bf25f28 100644 --- a/sv.c +++ b/sv.c @@ -13258,7 +13258,7 @@ perl_clone_using(PerlInterpreter *proto_perl, UV flags, PL_utf8_xidstart = sv_dup_inc(proto_perl->Iutf8_xidstart, param); PL_utf8_idcont = sv_dup_inc(proto_perl->Iutf8_idcont, param); PL_utf8_xidcont = sv_dup_inc(proto_perl->Iutf8_xidcont, param); - PL_utf8_foldable = hv_dup_inc(proto_perl->Iutf8_foldable, param); + PL_utf8_foldable = sv_dup_inc(proto_perl->Iutf8_foldable, param); if (proto_perl->Ipsig_pend) { -- 2.34.1