Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix integer overflow ub in testautomation_sdltest
this replaces an instance of LONG_MAX + RandomSint16(), which is undefined behavior when the random integer is positive, with LONG_MIN + RandomUint16(). similarly, LONG_MIN - RandomSint16() is replaced with LONG_MAX - RandomUint16().
- Loading branch information