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:
@@ -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);
|
||||
|
Reference in New Issue
Block a user