[openssl-commits] [openssl] master update
paul.dale at oracle.com
paul.dale at oracle.com
Tue Nov 28 22:57:39 UTC 2017
The branch master has been updated
via 92b1b9a8871530f26ef7df972111297ffa721be2 (commit)
from 3f6a831254abc7de759e79793535bd289cafd44a (commit)
- Log -----------------------------------------------------------------
commit 92b1b9a8871530f26ef7df972111297ffa721be2
Author: Pauli <paul.dale at oracle.com>
Date: Wed Nov 29 08:48:19 2017 +1000
A missing semicolon prevents compilation with ENGINE_REF_COUNT_DEBUG enabled.
Reviewed-by: Rich Salz <rsalz at openssl.org>
Reviewed-by: Richard Levitte <levitte at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/4816)
-----------------------------------------------------------------------
Summary of changes:
crypto/engine/eng_lib.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/crypto/engine/eng_lib.c b/crypto/engine/eng_lib.c
index a500992..8f65584 100644
--- 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);
More information about the openssl-commits
mailing list