Bug fix in umul code for 32-bit Win
This commit is contained in:
committed by
David Chisnall
parent
e7d90966f6
commit
c02077a06a
@@ -266,7 +266,7 @@ namespace snmalloc
|
||||
return prod;
|
||||
# else
|
||||
size_t prod;
|
||||
overflow = S_OK == UIntMult(x, y, &prod);
|
||||
overflow = S_OK != UIntMult(x, y, &prod);
|
||||
return prod;
|
||||
# endif
|
||||
#else
|
||||
|
||||
Reference in New Issue
Block a user