Andy Lester wrote:
> @@ -1860,8 +1859,7 @@ bool
>  Perl_is_gv_magical_sv(pTHX_ SV *name, U32 flags)
>  {
>      STRLEN len;
> -    const char *temp = SvPV_const(name, len);
> -    return is_gv_magical(temp, len, flags);
> +    return is_gv_magical(SvPV_const(name,len), len, flags);
>  }


That was the offending chunk. Order of evaluation !!
Thanks, applied as change #24997, without this part.

Reply via email to