diff options
Diffstat (limited to 'src/lib/libcrypto/ec/ec_print.c')
-rw-r--r-- | src/lib/libcrypto/ec/ec_print.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/ec/ec_print.c b/src/lib/libcrypto/ec/ec_print.c index 1b85e82436..faa212f502 100644 --- a/src/lib/libcrypto/ec/ec_print.c +++ b/src/lib/libcrypto/ec/ec_print.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ec_print.c,v 1.9 2022/11/26 16:08:52 tb Exp $ */ | 1 | /* $OpenBSD: ec_print.c,v 1.10 2023/03/07 09:27:10 jsing Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved. |
4 | * | 4 | * |
@@ -172,7 +172,7 @@ EC_POINT_hex2point(const EC_GROUP *group, const char *buf, | |||
172 | 172 | ||
173 | ret = EC_POINT_bn2point(group, tmp_bn, point, ctx); | 173 | ret = EC_POINT_bn2point(group, tmp_bn, point, ctx); |
174 | 174 | ||
175 | BN_clear_free(tmp_bn); | 175 | BN_free(tmp_bn); |
176 | 176 | ||
177 | return ret; | 177 | return ret; |
178 | } | 178 | } |