summaryrefslogtreecommitdiffstats
path: root/crypto/mem_sec.c
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2023-01-10 18:00:59 +0100
committerTomas Mraz <tomas@openssl.org>2023-01-12 10:46:52 +0100
commita509b97d2c4efd96e231913d49544ac7cb36b51b (patch)
tree80c9077ccfe0000444d580e38ad93a160c35a0d4 /crypto/mem_sec.c
parentc455f87aebf245814ba58d6a398b45ca4e80d1d7 (diff)
Do not check definition of a macro and use it in a single condition
The condition evaluation in #if conditions does not tolerate this if the macro is not defined. Fixes #19628 Reviewed-by: Hugo Landau <hlandau@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/20018)
Diffstat (limited to 'crypto/mem_sec.c')
-rw-r--r--crypto/mem_sec.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/crypto/mem_sec.c b/crypto/mem_sec.c
index 8d2c161c70..d29f261ec4 100644
--- a/crypto/mem_sec.c
+++ b/crypto/mem_sec.c
@@ -24,8 +24,8 @@
#ifndef OPENSSL_NO_SECURE_MEMORY
# if defined(_WIN32)
# include <windows.h>
-# if defined(WINAPI_FAMILY_PARTITION) \
- && !WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM)
+# if defined(WINAPI_FAMILY_PARTITION)
+# if !WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM)
/*
* While VirtualLock is available under the app partition (e.g. UWP),
* the headers do not define the API. Define it ourselves instead.
@@ -37,6 +37,7 @@ VirtualLock(
_In_ LPVOID lpAddress,
_In_ SIZE_T dwSize
);
+# endif
# endif
# endif
# include <stdlib.h>