sv can no longer be null at these points, as of commit
99fc7eca4,
which fixed buggy code that
7a5fd60d4 added (which resulted in
various interesting bugs and workarounds over the past few years.)
}
}
/* FAKE globs in the symbol table cause weird bugs (#77810) */
- if (sv) SvFAKE_off(sv);
+ SvFAKE_off(sv);
}
}
- if (sv && SvFAKE(sv)) {
+ if (SvFAKE(sv)) {
SV *newsv = sv_newmortal();
sv_setsv_flags(newsv, sv, 0);
SvFAKE_off(newsv);