From ea599390c605b798c755874e7afba7c1b7a89b94 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Thu, 18 Apr 2002 16:20:32 +0000 Subject: [PATCH] Make sure the opened directory is closed on exit. Notified by Lorinczy Zsigmond --- ssl/ssl_cert.c | 1 + 1 file changed, 1 insertion(+) 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; } -- 2.50.1