From: Nicholas Clark Date: Sat, 17 Dec 2005 12:00:51 +0000 (+0000) Subject: The IV/UV choice can be made inside uiv_2buf rather than sv_2pv_flags. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=4ea1d5509b412a58fa64cd5ebc1ea31750b05303;p=p5sagit%2Fp5-mst-13.2.git The IV/UV choice can be made inside uiv_2buf rather than sv_2pv_flags. p4raw-id: //depot/perl@26386 --- diff --git a/sv.c b/sv.c index f81f56f..fbf7ed0 100644 --- a/sv.c +++ b/sv.c @@ -2494,10 +2494,7 @@ Perl_sv_2pv_flags(pTHX_ register SV *sv, STRLEN *lp, I32 flags) if (SvTYPE(sv) < SVt_PVIV) sv_upgrade(sv, SVt_PVIV); - if (isUIOK) - ptr = uiv_2buf(buf, 0, SvUVX(sv), 1, &ebuf); - else - ptr = uiv_2buf(buf, SvIVX(sv), 0, 0, &ebuf); + ptr = uiv_2buf(buf, SvIVX(sv), SvUVX(sv), isUIOK, &ebuf); /* inlined from sv_setpvn */ SvGROW_mutable(sv, (STRLEN)(ebuf - ptr + 1)); Move(ptr,SvPVX_mutable(sv),ebuf - ptr,char);