[PATCH] util/oslib-win32: Fixes Use _aligned_malloc for qemu_try_memalign

Yonggang Luo posted 1 patch 4 years, 11 months ago
Test checkpatch passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20210111033716.1319-1-luoyonggang@gmail.com
Maintainers: Stefan Weil <sw@weilnetz.de>
util/oslib-win32.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] util/oslib-win32: Fixes Use _aligned_malloc for qemu_try_memalign
Posted by Yonggang Luo 4 years, 11 months ago
In commit dfbd0b873a85021c083d9b4b84630c3732645963, the use of
_aligned_malloc are called with wrong parameter order, fixed it.

Signed-off-by: Yonggang Luo <luoyonggang@gmail.com>
---
 util/oslib-win32.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/util/oslib-win32.c b/util/oslib-win32.c
index 83b8e89330..33af8e2506 100644
--- a/util/oslib-win32.c
+++ b/util/oslib-win32.c
@@ -59,7 +59,7 @@ void *qemu_try_memalign(size_t alignment, size_t size)
 
     g_assert(size != 0);
     g_assert(is_power_of_2(alignment));
-    ptr = _aligned_malloc(alignment, size);
+    ptr = _aligned_malloc(size, alignment);
     trace_qemu_memalign(alignment, size, ptr);
     return ptr;
 }
-- 
2.29.2.windows.3