Make gcc 4 happier about x509_addr.c
authortb <tb@openbsd.org>
Wed, 16 Mar 2022 11:44:36 +0000 (11:44 +0000)
committertb <tb@openbsd.org>
Wed, 16 Mar 2022 11:44:36 +0000 (11:44 +0000)
commitf978902f9129d6d29c84d3df05d4c492f403a87b
tree36c195128a799568280149448b33d6948fe04476
parentbc6311d77cd5d30ac9d52b9dbc59ea6cf4b9c7d3
Make gcc 4 happier about x509_addr.c

gcc 4 on sparc64 issues a few 'warning: value computed is not used'.
There are two cases: sk_set_cmp_function() returns the old comparison
function of the stack which we don't care about. The one warning about
an sk_delete() is about a return value that we know already and which
we will free a few lines down.

ok inoguchi miod
lib/libcrypto/x509/x509_addr.c