Explorar o código

rand: fix overflow (issue #576)

Thibaut Vandervelden %!s(int64=3) %!d(string=hai) anos
pai
achega
b538b429c3
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/rand.rs

+ 1 - 1
src/rand.rs

@@ -17,7 +17,7 @@ impl Rand {
         const M: u64 = 0xbb2efcec3c39611d;
         const A: u64 = 0x7590ef39;
 
-        let s = self.state * M + A;
+        let s = self.state.wrapping_mul(M).wrapping_add(A);
         self.state = s;
 
         let shift = 29 - (s >> 61);