From: Rafael Garcia-Suarez Date: Thu, 23 Mar 2006 10:01:48 +0000 (+0000) Subject: Further adjustement to change #27576 by Jan Dubois X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=fdbe6d7cef8d87e841fccd98211609c6439b71f8;p=p5sagit%2Fp5-mst-13.2.git Further adjustement to change #27576 by Jan Dubois (this change being blead-specific, while #27576 is integrable to maint) p4raw-link: @27576 on //depot/perl: cab190d4d715e2c6ec26ee0ebfd0bc6fb0f03bd3 p4raw-id: //depot/perl@27577 --- diff --git a/sv.c b/sv.c index d8b4d74..2c8f174 100644 --- a/sv.c +++ b/sv.c @@ -1899,8 +1899,8 @@ S_sv_2iuv_common(pTHX_ SV *sv) { if (Perl_isnan(SvNVX(sv))) { SvUV_set(sv, 0); SvIsUV_on(sv); + return FALSE; } - else #endif if (SvNVX(sv) < (NV)IV_MAX + 0.5) { SvIV_set(sv, I_V(SvNVX(sv)));