From dd2fcc1f7c44c5fb5aa2d33aecdc699c7018ce01 Mon Sep 17 00:00:00 2001 From: Peiwei Hu Date: Wed, 15 Dec 2021 14:53:53 +0800 Subject: [PATCH] EC_POINT_hex2point: forget to free pt Reviewed-by: Paul Dale Reviewed-by: Nicola Tuveri Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/17276) --- crypto/ec/ec_print.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/ec/ec_print.c b/crypto/ec/ec_print.c index d791e15b483..ffe112052fb 100644 --- a/crypto/ec/ec_print.c +++ b/crypto/ec/ec_print.c @@ -68,7 +68,7 @@ EC_POINT *EC_POINT_hex2point(const EC_GROUP *group, len = strlen(hex) / 2; oct_buf = OPENSSL_malloc(len); if (oct_buf == NULL) - return NULL; + goto err; if (!OPENSSL_hexstr2buf_ex(oct_buf, len, &oct_buf_len, hex, '\0') || !EC_POINT_oct2point(group, pt, oct_buf, oct_buf_len, ctx)) -- 2.47.2