mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-24 23:08:51 -04:00
Fix scan-build issue: initialized value never read
Value stored to 'source' during its initialization is never read.
(cherry picked from commit 4c33277446)
This commit is contained in:
parent
d0096dbb72
commit
89c000f356
1 changed files with 1 additions and 1 deletions
|
|
@ -1101,7 +1101,7 @@ load_text(dns_loadctx_t *lctx) {
|
|||
char *lhs = NULL;
|
||||
char *gtype = NULL;
|
||||
char *rhs = NULL;
|
||||
const char *source = "";
|
||||
const char *source;
|
||||
unsigned long line = 0;
|
||||
bool explicit_ttl;
|
||||
char classname1[DNS_RDATACLASS_FORMATSIZE];
|
||||
|
|
|
|||
Loading…
Reference in a new issue