mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-08 23:32:05 -04:00
silence dereferencing type-punned pointer will break strict-aliasing rules warning
This commit is contained in:
parent
ade83e60fa
commit
470c726bc8
1 changed files with 2 additions and 2 deletions
|
|
@ -15,7 +15,7 @@
|
|||
* PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: validator.c,v 1.136 2005/11/30 03:33:49 marka Exp $ */
|
||||
/* $Id: validator.c,v 1.137 2005/11/30 05:01:34 marka Exp $ */
|
||||
|
||||
/*! \file */
|
||||
|
||||
|
|
@ -2819,7 +2819,7 @@ dns_validator_create(dns_view_t *view, dns_name_t *name, dns_rdatatype_t type,
|
|||
|
||||
cleanup_event:
|
||||
isc_task_detach(&tclone);
|
||||
isc_event_free((isc_event_t **)&event);
|
||||
isc_event_free(ISC_EVENT_PTR(&event));
|
||||
|
||||
cleanup_val:
|
||||
dns_view_weakdetach(&val->view);
|
||||
|
|
|
|||
Loading…
Reference in a new issue