From: Mark Andrews Date: Mon, 4 Sep 2017 21:38:13 +0000 (+1000) Subject: silence converity warning [RT #45891] X-Git-Tag: v9.12.0a1~58 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=a322a0f31ce2f316170dec57dee41c0ee23912bc;p=thirdparty%2Fbind9.git silence converity warning [RT #45891] --- diff --git a/lib/dns/resolver.c b/lib/dns/resolver.c index a8a7f30b64d..6c1931f3423 100644 --- a/lib/dns/resolver.c +++ b/lib/dns/resolver.c @@ -5398,9 +5398,8 @@ validated(isc_task_t *task, isc_event_t *event) { now, vevent->rdataset, 0, NULL); if (result == ISC_R_SUCCESS) - result = dns_db_addrdataset(fctx->cache, wnode, NULL, - now, vevent->sigrdataset, - 0, NULL); + (void)dns_db_addrdataset(fctx->cache, wnode, NULL, now, + vevent->sigrdataset, 0, NULL); if (wnode != NULL) dns_db_detachnode(fctx->cache, &wnode); }