Change 27577 by [EMAIL PROTECTED] on 2006/03/23 10:01:48
Further adjustement to change #27576 by Jan Dubois
(this change being blead-specific, while #27576 is
integrable to maint)
Affected files ...
... //depot/perl/sv.c#1202 edit
Differences ...
==== //depot/perl/sv.c#1202 (text) ====
Index: perl/sv.c
--- perl/sv.c#1201~27576~ 2006-03-23 01:58:22.000000000 -0800
+++ perl/sv.c 2006-03-23 02:01:48.000000000 -0800
@@ -1899,8 +1899,8 @@
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)));
End of Patch.