openssl req: plug obvious leak
authortb <tb@openbsd.org>
Wed, 17 Apr 2024 01:24:43 +0000 (01:24 +0000)
committertb <tb@openbsd.org>
Wed, 17 Apr 2024 01:24:43 +0000 (01:24 +0000)
CID 492603

usr.bin/openssl/req.c

index b75ba92..1044f14 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: req.c,v 1.28 2023/07/02 07:05:14 tb Exp $ */
+/* $OpenBSD: req.c,v 1.29 2024/04/17 01:24:43 tb Exp $ */
 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  * All rights reserved.
  *
@@ -1697,6 +1697,7 @@ set_keygen_ctx(BIO * err, const char *gstr, int *pkey_type,
        if (EVP_PKEY_keygen_init(gctx) <= 0) {
                BIO_puts(err, "Error initializing keygen context\n");
                ERR_print_errors(err);
+               EVP_PKEY_CTX_free(gctx);
                return NULL;
        }
        if ((*pkey_type == EVP_PKEY_RSA) && (keylen != -1)) {