]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Fix a possible memleak in apps/rehash.c
authorBernd Edlinger <bernd.edlinger@hotmail.de>
Sun, 3 Dec 2023 10:29:52 +0000 (11:29 +0100)
committerTomas Mraz <tomas@openssl.org>
Tue, 12 Dec 2023 18:48:50 +0000 (19:48 +0100)
The OPENSSL_DIR_end was missing in case of error.

Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/22920)

apps/rehash.c

index 4fea16fa38b21ca3c56a040308dc7466579c0bbd..56a6ccea0928a6d913e299d55d6844845cc5e4d9 100644 (file)
@@ -383,6 +383,7 @@ static int do_dir(const char *dirname, enum Hash h)
         if ((copy = OPENSSL_strdup(filename)) == NULL
                 || sk_OPENSSL_STRING_push(files, copy) == 0) {
             OPENSSL_free(copy);
+            OPENSSL_DIR_end(&d);
             BIO_puts(bio_err, "out of memory\n");
             errs = 1;
             goto err;