util/oslib-win32: Fix fatal assertion in qemu_try_memalign
The function is called with alignment == 0 which caused an assertion.
Use the code from oslib-posix.c to fix that regression.
Fixes: ed6f53f9ca
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20210611105846.347954-1-sw@weilnetz.de>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
9ca0362298
commit
1c9638667b
@ -58,7 +58,11 @@ void *qemu_try_memalign(size_t alignment, size_t size)
|
|||||||
void *ptr;
|
void *ptr;
|
||||||
|
|
||||||
g_assert(size != 0);
|
g_assert(size != 0);
|
||||||
g_assert(is_power_of_2(alignment));
|
if (alignment < sizeof(void *)) {
|
||||||
|
alignment = sizeof(void *);
|
||||||
|
} else {
|
||||||
|
g_assert(is_power_of_2(alignment));
|
||||||
|
}
|
||||||
ptr = _aligned_malloc(size, alignment);
|
ptr = _aligned_malloc(size, alignment);
|
||||||
trace_qemu_memalign(alignment, size, ptr);
|
trace_qemu_memalign(alignment, size, ptr);
|
||||||
return ptr;
|
return ptr;
|
||||||
|
Loading…
Reference in New Issue
Block a user