Upgrade to Math::BigInt 1.66.
[p5sagit/p5-mst-13.2.git] / util.c
diff --git a/util.c b/util.c
index 7f38135..c750a2e 100644 (file)
--- a/util.c
+++ b/util.c
@@ -4422,6 +4422,11 @@ Perl_get_hash_seed(pTHX)
          myseed +=
               (UV)(Drand01() * (NV)((1 << ((UVSIZE * 8 - RANDBITS))) - 1));
 #endif /* RANDBITS < (UVSIZE * 8) */
+         if (myseed == 0) { /* Superparanoia. */
+             myseed = (UV)(Drand01() * (NV)UV_MAX); /* One more chance. */
+             if (myseed == 0)
+                 Perl_croak(aTHX_ "Your random numbers are not that random");
+         }
      }
      PL_hash_seed_set = TRUE;