This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fe00c36
)
remove ; so the conditional actually controls some code
author
Tony Cook
<tony@develop-help.com>
Sun, 24 Oct 2010 00:35:02 +0000
(11:35 +1100)
committer
Tony Cook
<tony@develop-help.com>
Sun, 24 Oct 2010 00:35:02 +0000
(11:35 +1100)
sv.c
patch
|
blob
|
blame
|
history
diff --git
a/sv.c
b/sv.c
index
9afc3f6
..
a511a9a
100644
(file)
--- a/
sv.c
+++ b/
sv.c
@@
-4033,11
+4033,12
@@
Perl_sv_setsv_flags(pTHX_ SV *dstr, register SV* sstr, const I32 flags)
if (len > 1 && name[len-2] == ':' && name[len-1] == ':') {
/* Set aside the old stash, so we can reset isa caches
on its subclasses. */
- if((old_stash = GvHV(dstr)))
;
+ if((old_stash = GvHV(dstr)))
{
/* Make sure we do not lose it early. */
SvREFCNT_inc_simple_void_NN(
sv_2mortal((SV *)old_stash)
);
+ }
reset_isa = TRUE;
}