diff options
author | Hugo Landau <hlandau@openssl.org> | 2023-03-21 16:19:34 +0100 |
---|---|---|
committer | Hugo Landau <hlandau@openssl.org> | 2023-03-30 12:14:16 +0200 |
commit | 9cf091a3c5f34277dca1cac979c7d632c7236d7b (patch) | |
tree | 83eece0baa57348f49e692291c510ba0de194689 /crypto/thread | |
parent | Refactor build.info (diff) | |
download | openssl-9cf091a3c5f34277dca1cac979c7d632c7236d7b.tar.xz openssl-9cf091a3c5f34277dca1cac979c7d632c7236d7b.zip |
QUIC Thread Assisted mode: miscellaneous fixes
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/20348)
Diffstat (limited to 'crypto/thread')
-rw-r--r-- | crypto/thread/arch/thread_win.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/crypto/thread/arch/thread_win.c b/crypto/thread/arch/thread_win.c index f647c68c0a..7f44d1f5cf 100644 --- a/crypto/thread/arch/thread_win.c +++ b/crypto/thread/arch/thread_win.c @@ -160,7 +160,6 @@ static int determine_timeout(OSSL_TIME deadline, DWORD *w_timeout_p) ms = ossl_time2ms(delta); - /* * Amount of time we want to wait is too long for the 32-bit argument to * the Win32 API, so just wait as long as possible. @@ -288,7 +287,7 @@ void ossl_crypto_condvar_free(CRYPTO_CONDVAR **cv) *cv_p = NULL; } -#endif +# endif void ossl_crypto_mem_barrier(void) { |