diff options
author | Brent Cook <bcook@cvs.openbsd.org> | 2022-07-11 05:33:15 +0000 |
---|---|---|
committer | Brent Cook <bcook@cvs.openbsd.org> | 2022-07-11 05:33:15 +0000 |
commit | 9da030d04b6a1c1e8f22311bd58ef2735f27a3b9 (patch) | |
tree | afe760bdb77379f4504037094e2d6926edcd443a /lib/libcrypto | |
parent | 082ecbfc8226ab1e25d1e43cb2f305bf40125f04 (diff) |
fix NULL return adding missing semicolon
ok tb@
Diffstat (limited to 'lib/libcrypto')
-rw-r--r-- | lib/libcrypto/dsa/dsa_meth.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcrypto/dsa/dsa_meth.c b/lib/libcrypto/dsa/dsa_meth.c index 2cb0426d430..40cd05937a5 100644 --- a/lib/libcrypto/dsa/dsa_meth.c +++ b/lib/libcrypto/dsa/dsa_meth.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dsa_meth.c,v 1.4 2022/07/04 12:22:32 tb Exp $ */ +/* $OpenBSD: dsa_meth.c,v 1.5 2022/07/11 05:33:14 bcook Exp $ */ /* * Copyright (c) 2018 Theo Buehler <tb@openbsd.org> * @@ -43,7 +43,7 @@ void DSA_meth_free(DSA_METHOD *meth) { if (meth == NULL) - return + return; free(meth->name); free(meth); |