Bug fix in umul code for 32-bit Win

This commit is contained in:
Matthew Parkinson
2019-02-15 13:35:20 +00:00
committed by David Chisnall
parent e7d90966f6
commit c02077a06a

View File

@@ -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