]> git.ipfire.org Git - thirdparty/openssl.git/blobdiff - crypto/err/err.c
free NULL cleanup -- coda
[thirdparty/openssl.git] / crypto / err / err.c
index 308504a8ed1825956077268a48a4b1be2b15a394..e1091e3cf73f703d1c195b96021ca026a707d25e 100644 (file)
@@ -559,10 +559,8 @@ void ERR_unload_strings(int lib, ERR_STRING_DATA *str)
 void ERR_free_strings(void)
 {
     CRYPTO_w_lock(CRYPTO_LOCK_ERR);
-    if (int_error_hash) {
-        lh_ERR_STRING_DATA_free(int_error_hash);
-        int_error_hash = NULL;
-    }
+    lh_ERR_STRING_DATA_free(int_error_hash);
+    int_error_hash = NULL;
     CRYPTO_w_unlock(CRYPTO_LOCK_ERR);
 }