Re: Bug in Storable???
authorSlaven Rezic <slaven@rezic.de>
Sun, 4 May 2003 18:00:40 +0000 (20:00 +0200)
committerAbhijit Menon-Sen <ams@wiw.org>
Mon, 5 May 2003 03:21:41 +0000 (03:21 +0000)
Message-Id: <87of2iwvkn.fsf@vran.herceg.de>

p4raw-id: //depot/perl@19409

ext/Storable/Storable.xs
ext/Storable/t/integer.t

index 86f8b65..41dffca 100644 (file)
@@ -1960,7 +1960,7 @@ static int store_scalar(stcxt_t *cxt, SV *sv)
 #else
 
             SvIV_please(sv);
-            if (SvIOK(sv)) {
+           if (SvIOK_notUV(sv)) {
                 iv = SvIV(sv);
                 goto integer;          /* Share code above */
             }
index 8b0e6c4..ec7961e 100644 (file)
@@ -64,6 +64,8 @@ my @numbers =
    0x7FFFFFFF, 0x80000000, 0x80000001, 0xFFFFFFFF, 0xDEADBEEF,
    # UV bounds
    $max_iv_p1, $max_uv_m1, $max_uv, $lots_of_9C,
+   # NV-UV conversion
+   2559831922.0,
   );
 
 plan tests => @processes * @numbers * 5;