summaryrefslogtreecommitdiffstats
path: root/crypto
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:47:54 +0100
commitd92a5da5ae2f67df449080a54795158bdeab1718 (patch)
tree46a928230bdbef034e30b8a32e801974441b9cde /crypto
parent1932e595c8061bcb8d2718eaf5fdb6038bdec631 (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) (cherry picked from commit a509b97d2c4efd96e231913d49544ac7cb36b51b)
Diffstat (limited to 'crypto')
-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 711d35f409..99c30f84c1 100644
--- a/crypto/mem_sec.c
+++ b/crypto/mem_sec.c
@@ -23,8 +23,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.
@@ -36,6 +36,7 @@ VirtualLock(
_In_ LPVOID lpAddress,
_In_ SIZE_T dwSize
);
+# endif
# endif
# endif
# include <stdlib.h>