projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3f6a831
)
A missing semicolon prevents compilation with ENGINE_REF_COUNT_DEBUG enabled.
author
Pauli
<paul.dale@oracle.com>
Tue, 28 Nov 2017 22:48:19 +0000
(08:48 +1000)
committer
Pauli
<paul.dale@oracle.com>
Tue, 28 Nov 2017 22:55:44 +0000
(08:55 +1000)
Reviewed-by: Rich Salz <rsalz@openssl.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/4816)
crypto/engine/eng_lib.c
patch
|
blob
|
history
diff --git
a/crypto/engine/eng_lib.c
b/crypto/engine/eng_lib.c
index a500992a21857c0c2d8d0fdeb2a06ef72f883512..8f6558422176e6ba689731ebd8f64cc8813a3a09 100644
(file)
--- a/
crypto/engine/eng_lib.c
+++ b/
crypto/engine/eng_lib.c
@@
-82,7
+82,7
@@
int engine_free_util(ENGINE *e, int not_locked)
else
i = --e->struct_ref;
#endif
- engine_ref_debug(e, 0, -1)
+ engine_ref_debug(e, 0, -1)
;
if (i > 0)
return 1;
REF_ASSERT_ISNT(i < 0);