From: Steve Hay Date: Fri, 21 Sep 2007 08:25:47 +0000 (+0000) Subject: Fix Win32 breakage caused by #31926 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=26488bcfd275389416b4ce41d2bbea51ab55b2ef;p=p5sagit%2Fp5-mst-13.2.git Fix Win32 breakage caused by #31926 p4raw-id: //depot/perl@31937 --- diff --git a/hv.c b/hv.c index a8a5fd1..95df7c8 100644 --- a/hv.c +++ b/hv.c @@ -445,7 +445,7 @@ Perl_hv_common(pTHX_ HV *hv, SV *keysv, const char *key, STRLEN klen, | return_svp, NULL /* no value */, 0 /* compute hash */); - if (!entry && (action & HV_FETCH_LVALUE)) { + if (!result && (action & HV_FETCH_LVALUE)) { /* This call will free key if necessary. Do it this way to encourage compiler to tail call optimise. */