diff options
author | Bob Beck <beck@cvs.openbsd.org> | 2015-08-28 01:06:10 +0000 |
---|---|---|
committer | Bob Beck <beck@cvs.openbsd.org> | 2015-08-28 01:06:10 +0000 |
commit | 54152945d60db36a1c41d5d73699532bc5457110 (patch) | |
tree | 0db2931086245b79384517c2f286dcf453c681a4 /lib | |
parent | 5ad0e8c0aeab06cc8ce3a15ee37adfe7cc17c615 (diff) |
Kill coverity 128475
ok doug@
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libssl/src/crypto/engine/eng_openssl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libssl/src/crypto/engine/eng_openssl.c b/lib/libssl/src/crypto/engine/eng_openssl.c index ed123d71070..a3baed38052 100644 --- a/lib/libssl/src/crypto/engine/eng_openssl.c +++ b/lib/libssl/src/crypto/engine/eng_openssl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: eng_openssl.c,v 1.10 2015/02/11 03:19:37 doug Exp $ */ +/* $OpenBSD: eng_openssl.c,v 1.11 2015/08/28 01:06:09 beck Exp $ */ /* Written by Geoff Thorpe (geoff@geoffthorpe.net) for the OpenSSL * project 2000. */ @@ -193,7 +193,7 @@ ENGINE_load_openssl(void) if (!toadd) return; - ENGINE_add(toadd); + (void) ENGINE_add(toadd); /* If the "add" worked, it gets a structural reference. So either way, * we release our just-created reference. */ ENGINE_free(toadd); |