mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
[master] fix possible uninitialized variable
This commit is contained in:
parent
e4a70b8fdf
commit
ffbd79e978
1 changed files with 1 additions and 2 deletions
|
|
@ -800,13 +800,12 @@ generate(dns_loadctx_t *lctx, char *range, char *lhs, char *gtype, char *rhs,
|
|||
dns_rdatalist_t rdatalist;
|
||||
dns_rdatatype_t type;
|
||||
rdatalist_head_t head;
|
||||
int n;
|
||||
int target_size = MINTSIZ; /* only one rdata at a time */
|
||||
isc_buffer_t buffer;
|
||||
isc_buffer_t target;
|
||||
isc_result_t result;
|
||||
isc_textregion_t r;
|
||||
int start, stop, step, i;
|
||||
int i, n, start, stop, step = 0;
|
||||
dns_incctx_t *ictx;
|
||||
|
||||
ictx = lctx->inc;
|
||||
|
|
|
|||
Loading…
Reference in a new issue