diff options
author | 2015-08-28 01:06:09 +0000 | |
---|---|---|
committer | 2015-08-28 01:06:09 +0000 | |
commit | d561ed61ec3bd168e032d932786ebe92480b3b95 (patch) | |
tree | 7832129fbe586afc2c83d92c3166834b68dfbf37 /lib/libssl/src | |
parent | fairly simple sizes for free(); ok tedu (diff) | |
download | wireguard-openbsd-d561ed61ec3bd168e032d932786ebe92480b3b95.tar.xz wireguard-openbsd-d561ed61ec3bd168e032d932786ebe92480b3b95.zip |
Kill coverity 128475
ok doug@
Diffstat (limited to 'lib/libssl/src')
-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); |