diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-04-04 21:16:17 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-04-04 21:16:17 +0000 |
commit | 257c9e5b5a08bebee2d7b4f15b846e289d3cdcb8 (patch) | |
tree | 494c8504ebc646361ed1c5e5ae2ba5ee3b78fcee /hv.c | |
parent | bac4b2ad63e048350f82163026a348685ed8c235 (diff) | |
download | perl-257c9e5b5a08bebee2d7b4f15b846e289d3cdcb8.tar.gz |
[win32] change 866 was incomplete
p4raw-id: //depot/win32/perl@879
Diffstat (limited to 'hv.c')
-rw-r--r-- | hv.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -841,7 +841,7 @@ hv_free_ent(HV *hv, register HE *entry) if (!entry) return; val = HeVAL(entry); - if (isGV(val) && GvCVu(val) && HvNAME(hv)) + if (val && isGV(val) && GvCVu(val) && HvNAME(hv)) sub_generation++; /* may be deletion of method from stash */ SvREFCNT_dec(val); if (HeKLEN(entry) == HEf_SVKEY) { |