mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
Uninitialized variable fixed.
This commit is contained in:
parent
d4a4b9ffd6
commit
c559e42c7e
1 changed files with 2 additions and 2 deletions
|
|
@ -1048,7 +1048,7 @@ parse_options(ndcpcontext *pctx, dns_c_ndcopts_t **opts)
|
|||
static isc_result_t
|
||||
parse_serverstmt(ndcpcontext *pctx, dns_c_ndcserver_t **server)
|
||||
{
|
||||
isc_result_t res;
|
||||
isc_result_t res = ISC_R_FAILURE;
|
||||
char *servername = NULL;
|
||||
char *keyname = NULL;
|
||||
char *hostname = NULL;
|
||||
|
|
@ -1204,7 +1204,7 @@ parse_serverstmt(ndcpcontext *pctx, dns_c_ndcserver_t **server)
|
|||
static isc_result_t
|
||||
parse_keystmt(ndcpcontext *pctx, dns_c_kdeflist_t *keys)
|
||||
{
|
||||
isc_result_t res;
|
||||
isc_result_t res = ISC_R_FAILURE;
|
||||
dns_c_ndcctx_t *ctx = pctx->thecontext;
|
||||
dns_c_kdef_t *key = NULL;
|
||||
isc_mem_t *mem;
|
||||
|
|
|
|||
Loading…
Reference in a new issue