Re: [PATCH] util/oslib-win32: Fix fatal assertion in qemu_try_memalign

2021-06-11 Thread Stefan Weil
Am 11.06.21 um 13:06 schrieb Philippe Mathieu-Daudé: On 6/11/21 12:58 PM, Stefan Weil wrote: The function is called with alignment == 0 which caused an assertion. Use the code from oslib_posix.c to fix that regression (introduced by commit ed6f53f9ca9). Oops. Can we replace '(introduced by c

Re: [PATCH] util/oslib-win32: Fix fatal assertion in qemu_try_memalign

2021-06-11 Thread Philippe Mathieu-Daudé
On 6/11/21 12:58 PM, Stefan Weil wrote: > The function is called with alignment == 0 which caused an assertion. > Use the code from oslib_posix.c to fix that regression (introduced > by commit ed6f53f9ca9). > Oops. Can we replace '(introduced by commit ed6f53f9ca9)' by: Fixes: ed6f53f9ca9 ("util