From: Richard Levitte Date: Thu, 18 Apr 2002 16:20:32 +0000 (+0000) Subject: Make sure the opened directory is closed on exit. X-Git-Tag: OpenSSL_0_9_6d~22 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ea599390c605b798c755874e7afba7c1b7a89b94;p=openssl Make sure the opened directory is closed on exit. Notified by Lorinczy Zsigmond --- diff --git a/ssl/ssl_cert.c b/ssl/ssl_cert.c index be3acabf3e..bb4cb2fdf0 100644 --- a/ssl/ssl_cert.c +++ b/ssl/ssl_cert.c @@ -751,6 +751,7 @@ int SSL_add_dir_cert_subjects_to_stack(STACK_OF(X509_NAME) *stack, ret = 1; err: + if (d) closedir(d); CRYPTO_w_unlock(CRYPTO_LOCK_READDIR); return ret; }