diff options
author | Spider Boardman <spider@orb.nashua.nh.us> | 1998-03-04 21:49:46 -0500 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-03-05 19:54:49 +0000 |
commit | 9002cb76ec83ef7f7257db6ea6e60d6a200d7416 (patch) | |
tree | a188f25e72fdd7abecfcbcbfd7230f16d133c332 /scope.c | |
parent | 7766148a84514045e76c63eb79dcff7b7c84702d (diff) | |
download | perl-9002cb76ec83ef7f7257db6ea6e60d6a200d7416.tar.gz |
[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
Diffstat (limited to 'scope.c')
-rw-r--r-- | scope.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |