diff options
author | Andy Lester <andy@petdance.com> | 2005-05-24 06:41:15 -0500 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-05-30 08:54:51 +0000 |
commit | 79602161f7862b042c6d384b754ad6e01690f66c (patch) | |
tree | 29a7c5270679c676138ceb155f0ca9f5e7bdaf4c /hv.c | |
parent | bad9ed690fe461db7e0f513bef4072421c668c0f (diff) | |
download | perl-79602161f7862b042c6d384b754ad6e01690f66c.tar.gz |
Teeny optimization in S_hv_magic_check
Message-ID: <20050524164115.GA12027@petdance.com>
p4raw-id: //depot/perl@24626
Diffstat (limited to 'hv.c')
-rw-r--r-- | hv.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -828,6 +828,7 @@ S_hv_magic_check(pTHX_ HV *hv, bool *needs_copy, bool *needs_store) case PERL_MAGIC_tied: case PERL_MAGIC_sig: *needs_store = FALSE; + return; /* We've set all there is to set. */ } } mg = mg->mg_moremagic; |