From 29823db1c61cf92dc6208ba56182d1dc7d0d2dd0 Mon Sep 17 00:00:00 2001 From: bcook <> Date: Wed, 5 Jul 2023 20:56:29 +0000 Subject: don't return in a void function ok tb@ --- src/lib/libcrypto/ec/ecx_methods.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib') diff --git a/src/lib/libcrypto/ec/ecx_methods.c b/src/lib/libcrypto/ec/ecx_methods.c index cc757d31b4..1040ee6fc3 100644 --- a/src/lib/libcrypto/ec/ecx_methods.c +++ b/src/lib/libcrypto/ec/ecx_methods.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ecx_methods.c,v 1.6 2023/07/02 15:02:52 tb Exp $ */ +/* $OpenBSD: ecx_methods.c,v 1.7 2023/07/05 20:56:29 bcook Exp $ */ /* * Copyright (c) 2022 Joel Sing * @@ -486,7 +486,7 @@ ecx_free(EVP_PKEY *pkey) { struct ecx_key_st *ecx_key = pkey->pkey.ecx; - return ecx_key_free(ecx_key); + ecx_key_free(ecx_key); } static int -- cgit v1.2.3-55-g6feb