summaryrefslogtreecommitdiffstats
path: root/CryptoPkg/Library
diff options
context:
space:
mode:
Diffstat (limited to 'CryptoPkg/Library')
-rw-r--r--CryptoPkg/Library/TlsLib/TlsConfig.c3
-rw-r--r--CryptoPkg/Library/TlsLib/TlsProcess.c3
2 files changed, 4 insertions, 2 deletions
diff --git a/CryptoPkg/Library/TlsLib/TlsConfig.c b/CryptoPkg/Library/TlsLib/TlsConfig.c
index 5adb1976e3..f9333165a9 100644
--- a/CryptoPkg/Library/TlsLib/TlsConfig.c
+++ b/CryptoPkg/Library/TlsLib/TlsConfig.c
@@ -701,7 +701,6 @@ TlsSetCaCertificate (
TLS_CONNECTION *TlsConn;
SSL_CTX *SslCtx;
INTN Ret;
- UINTN ErrorCode;
BioCert = NULL;
Cert = NULL;
@@ -753,6 +752,8 @@ TlsSetCaCertificate (
//
Ret = X509_STORE_add_cert (X509Store, Cert);
if (Ret != 1) {
+ unsigned long ErrorCode;
+
ErrorCode = ERR_peek_last_error ();
//
// Ignore "already in table" errors
diff --git a/CryptoPkg/Library/TlsLib/TlsProcess.c b/CryptoPkg/Library/TlsLib/TlsProcess.c
index ddd0317ee6..1b712cd452 100644
--- a/CryptoPkg/Library/TlsLib/TlsProcess.c
+++ b/CryptoPkg/Library/TlsLib/TlsProcess.c
@@ -81,7 +81,6 @@ TlsDoHandshake (
TLS_CONNECTION *TlsConn;
UINTN PendingBufferSize;
INTN Ret;
- UINTN ErrorCode;
TlsConn = (TLS_CONNECTION *)Tls;
PendingBufferSize = 0;
@@ -133,6 +132,8 @@ TlsDoHandshake (
));
DEBUG_CODE_BEGIN ();
while (TRUE) {
+ unsigned long ErrorCode;
+
ErrorCode = ERR_get_error ();
if (ErrorCode == 0) {
break;