mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-08 21:22:09 -04:00
fix 'result' might be used uninitialized in this function
This commit is contained in:
parent
bfbd478cdb
commit
875e869ddc
1 changed files with 1 additions and 1 deletions
|
|
@ -9799,7 +9799,7 @@ isc_result_t
|
|||
ns_server_nta(ns_server_t *server, char *args, isc_buffer_t *text) {
|
||||
dns_view_t *view;
|
||||
dns_ntatable_t *ntatable = NULL;
|
||||
isc_result_t result;
|
||||
isc_result_t result = ISC_R_SUCCESS;
|
||||
char *ptr, *nametext = NULL, *viewname;
|
||||
isc_stdtime_t now, when;
|
||||
isc_time_t t;
|
||||
|
|
|
|||
Loading…
Reference in a new issue