From 45860a5561e3b434b1f2eb17cbd8fb32c1132782 Mon Sep 17 00:00:00 2001 From: akallabeth Date: Mon, 18 May 2020 09:36:16 +0200 Subject: [PATCH] Fixed issues with clang sanitizers and alignemt offsets. --- winpr/libwinpr/crt/test/TestAlignment.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/winpr/libwinpr/crt/test/TestAlignment.c b/winpr/libwinpr/crt/test/TestAlignment.c index 80986478f..0e4595b89 100644 --- a/winpr/libwinpr/crt/test/TestAlignment.c +++ b/winpr/libwinpr/crt/test/TestAlignment.c @@ -12,7 +12,7 @@ int TestAlignment(int argc, char* argv[]) /* Alignment should be 2^N where N is a positive integer */ alignment = 16; - offset = 5; + offset = 8; /* _aligned_malloc */