updates for TIRTOS build following release 3.10.0

This commit is contained in:
Kaleb Himes
2017-01-31 13:15:45 -08:00
parent 29f52ec735
commit af355f7472
3 changed files with 3 additions and 1 deletions

View File

@@ -3850,7 +3850,7 @@ void FreeHandshakeResources(WOLFSSL* ssl)
wc_ShaFree(&ssl->hsHashes->hashSha); wc_ShaFree(&ssl->hsHashes->hashSha);
#endif #endif
#ifndef NO_SHA256 #ifndef NO_SHA256
wc_Sha256Free(&ssl->hsHashes->hashSha25); wc_Sha256Free(&ssl->hsHashes->hashSha256);
#endif #endif
#ifdef HAVE_SECURE_RENEGOTIATION #ifdef HAVE_SECURE_RENEGOTIATION

View File

@@ -41,6 +41,7 @@ var wolfSSLObjList = [
"wolfcrypt/src/sha512.c", "wolfcrypt/src/sha512.c",
"wolfcrypt/src/tfm.c", "wolfcrypt/src/tfm.c",
"wolfcrypt/src/wc_port.c", "wolfcrypt/src/wc_port.c",
"wolfcrtyp/src/wolfmath.c",
"src/internal.c", "src/internal.c",
"src/io.c", "src/io.c",

View File

@@ -485,6 +485,7 @@ int wc_UnLockMutex(wolfSSL_Mutex *m)
if( Error_check( &eb ) ) if( Error_check( &eb ) )
{ {
Error_raise( &eb, Error_E_generic, "Failed to Create the semaphore.",NULL); Error_raise( &eb, Error_E_generic, "Failed to Create the semaphore.",NULL);
return BAD_MUTEX_E;
} else return 0; } else return 0;
} }