From 6e16b1720f31e8803658aedd793b27929b04dc8f Mon Sep 17 00:00:00 2001 From: Dwayne Litzenberger Date: Sat, 22 Feb 2014 15:04:18 -0800 Subject: AESNI: Fix order of alignment & size args in _aligned_malloc --- src/AESNI.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/AESNI.c b/src/AESNI.c index 6a200ab..50f0cd6 100644 --- a/src/AESNI.c +++ b/src/AESNI.c @@ -63,7 +63,11 @@ static void* aligned_malloc_wrapper(size_t alignment, size_t size) } # define aligned_free_wrapper free #elif defined(HAVE__ALIGNED_MALLOC) /* _aligned_malloc is available on Windows */ -# define aligned_malloc_wrapper _aligned_malloc +static void* aligned_malloc_wrapper(size_t alignment, size_t size) +{ + /* NB: _aligned_malloc takes its args in the opposite order from aligned_alloc */ + return _aligned_malloc(size, alignment); +} # define aligned_free_wrapper _aligned_free #else # error "No function to allocate/free aligned memory is available." -- cgit v1.2.1