The branch master has been updated
       via  dd2fcc1f7c44c5fb5aa2d33aecdc699c7018ce01 (commit)
      from  e8b597f33143410fb50bdeba8722c249524bc0b9 (commit)


- Log -----------------------------------------------------------------
commit dd2fcc1f7c44c5fb5aa2d33aecdc699c7018ce01
Author: Peiwei Hu <[email protected]>
Date:   Wed Dec 15 14:53:53 2021 +0800

    EC_POINT_hex2point: forget to free pt
    
    Reviewed-by: Paul Dale <[email protected]>
    Reviewed-by: Nicola Tuveri <[email protected]>
    Reviewed-by: Tomas Mraz <[email protected]>
    (Merged from https://github.com/openssl/openssl/pull/17276)

-----------------------------------------------------------------------

Summary of changes:
 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 d791e15b48..ffe112052f 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))

Reply via email to