mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-30 22:15:20 +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:
@@ -15,7 +15,7 @@
|
||||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: validator.c,v 1.95 2001/11/12 19:05:35 gson Exp $ */
|
||||
/* $Id: validator.c,v 1.96 2001/11/30 01:59:21 gson Exp $ */
|
||||
|
||||
#include <config.h>
|
||||
|
||||
@@ -990,7 +990,9 @@ validate(dns_validator_t *val, isc_boolean_t resume) {
|
||||
sizeof(*val->siginfo));
|
||||
if (val->siginfo == NULL)
|
||||
return (ISC_R_NOMEMORY);
|
||||
dns_rdata_tostruct(&rdata, val->siginfo, NULL);
|
||||
result = dns_rdata_tostruct(&rdata, val->siginfo, NULL);
|
||||
if (result != ISC_R_SUCCESS)
|
||||
return (result);
|
||||
|
||||
/*
|
||||
* At this point we could check that the signature algorithm
|
||||
|
Reference in New Issue
Block a user