From: Spider Boardman Date: Thu, 5 Mar 1998 02:49:46 +0000 (-0500) Subject: [win32] maintpatch X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=9002cb76ec83ef7f7257db6ea6e60d6a200d7416;p=p5sagit%2Fp5-mst-13.2.git [win32] maintpatch Message-Id: <199803050749.CAA15206@Orb.Nashua.NH.US> Subject: [PATCH] 5.004_04 +MAINT_TRIAL_1 broken when sizeof(int) != sizeof(void p4raw-id: //depot/win32/perl@786 --- diff --git a/scope.c b/scope.c index 65ac0b5..9d4573b 100644 --- a/scope.c +++ b/scope.c @@ -727,7 +727,7 @@ leave_scope(I32 base) goto restore_sv; case SAVEt_HELEM: /* hash element */ value = (SV*)SSPOPPTR; - sv = (SV*)SSPOPINT; + sv = (SV*)SSPOPPTR; hv = (HV*)SSPOPPTR; ptr = hv_fetch_ent(hv, sv, 1, 0); ptr = &HeVAL((HE*)ptr);