2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 14:35:26 +00:00

Check return values or cast them to (void), as required by the coding

standards; add exceptions to the coding standards for cases where this is
not desirable
This commit is contained in:
Andreas Gustafsson
2001-11-30 01:59:49 +00:00
parent 9ac8796f16
commit 1f1d36a87b
61 changed files with 420 additions and 409 deletions

View File

@@ -16,7 +16,7 @@
*/
/*
* $Id: dbtable.c,v 1.25 2001/06/04 19:33:00 tale Exp $
* $Id: dbtable.c,v 1.26 2001/11/30 01:59:06 gson Exp $
*/
/*
@@ -216,7 +216,7 @@ dns_dbtable_remove(dns_dbtable_t *dbtable, dns_db_t *db) {
if (result == ISC_R_SUCCESS) {
INSIST(stored_data == db);
dns_rbt_deletename(dbtable->rbt, name, ISC_FALSE);
(void)dns_rbt_deletename(dbtable->rbt, name, ISC_FALSE);
}
RWUNLOCK(&dbtable->tree_lock, isc_rwlocktype_write);