3 May
2023
3 May
'23
7 a.m.
Note: typeof (int * unsigned) is unsigned. So: - on 64bit CPUs, where sizeof(int) = 4 < sizeof(void*) = 8, - when the result of the multiplication is supposed to be negative - there's no progation of the negative sign from 32bit to 64 bit integers Fixes a crash in Age of Empire II. Signed-off-by: Eric Pouech <epouech(a)codeweavers.com> -- v2: evr: Fix incorrect integral computation. https://gitlab.winehq.org/wine/wine/-/merge_requests/2723