artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ac81be6
)
fix NULL return adding missing semicolon
author
bcook
<bcook@openbsd.org>
Mon, 11 Jul 2022 05:33:14 +0000
(
05:33
+0000)
committer
bcook
<bcook@openbsd.org>
Mon, 11 Jul 2022 05:33:14 +0000
(
05:33
+0000)
ok tb@
lib/libcrypto/dsa/dsa_meth.c
patch
|
blob
|
history
diff --git
a/lib/libcrypto/dsa/dsa_meth.c
b/lib/libcrypto/dsa/dsa_meth.c
index
2cb0426
..
40cd059
100644
(file)
--- 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);