[win32] maintpatch
Spider Boardman [Thu, 5 Mar 1998 02:49:46 +0000 (21:49 -0500)]
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

scope.c

diff --git a/scope.c b/scope.c
index 65ac0b5..9d4573b 100644 (file)
--- 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);