diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-05-11 14:08:14 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-05-11 14:08:14 +0000 |
commit | f6ec51f74c8ac3114d6ab404cd0d7ce83d50adc9 (patch) | |
tree | 18863e2a1c31485f08ee30a422fb01ce18d80a81 /gv.c | |
parent | a6c403648ecd5cc72235fdb1e7535523a8ff2ac9 (diff) | |
download | perl-f6ec51f74c8ac3114d6ab404cd0d7ce83d50adc9.tar.gz |
avoid creating spurious subroutine stubs on failed subroutine
call and other places of sv_2cv() misuse; fixes problems with
failed subroutine calls "hiding" later attempts to lookup methods
in base classes
p4raw-id: //depot/perl@3388
Diffstat (limited to 'gv.c')
-rw-r--r-- | gv.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1075,7 +1075,7 @@ Gv_AMupdate(HV *stash) break; case SVt_PVGV: if (!(cv = GvCVu((GV*)sv))) - cv = sv_2cv(sv, &stash, &gv, TRUE); + cv = sv_2cv(sv, &stash, &gv, FALSE); break; } if (cv) filled=1; |