mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-30 02:37:28 +02:00
Merge pull request #1721 from kaleb-himes/cleanup-debug
Cleanup debug errors
This commit is contained in:
@ -590,6 +590,11 @@ int wc_AddErrorNode(int error, int line, char* buf, char* file)
|
||||
if (wc_errors != NULL) {
|
||||
/* check for unexpected case before over writing wc_errors */
|
||||
WOLFSSL_MSG("ERROR in adding new node to logging queue!!\n");
|
||||
/* In the event both wc_last_node and wc_errors are NULL, err
|
||||
* goes unassigned to external wc_errors, wc_last_node. Free
|
||||
* err in this instance since wc_ClearErrorNodes will not
|
||||
*/
|
||||
XFREE(err, wc_error_heap, DYNAMIC_TYPE_LOG);
|
||||
}
|
||||
else {
|
||||
wc_errors = err;
|
||||
@ -651,7 +656,9 @@ void wc_RemoveErrorNode(int idx)
|
||||
*/
|
||||
void wc_ClearErrorNodes(void)
|
||||
{
|
||||
#if defined(DEBUG_WOLFSSL) || defined(WOLFSSL_NGINX)
|
||||
#if defined(DEBUG_WOLFSSL) || defined(WOLFSSL_NGINX) || \
|
||||
defined(OPENSSL_EXTRA) || defined(DEBUG_WOLFSSL_VERBOSE)
|
||||
|
||||
if (wc_LockMutex(&debug_mutex) != 0) {
|
||||
WOLFSSL_MSG("Lock debug mutex failed");
|
||||
return;
|
||||
|
Reference in New Issue
Block a user