mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
Merge branch '3965-source-never-read-master.c-v9_18' into 'bind-9.18'
[9.18] Fix scan-build issue: initialized value never read See merge request isc-projects/bind9!7738
This commit is contained in:
commit
44ccc0b9d0
2 changed files with 4 additions and 1 deletions
3
CHANGES
3
CHANGES
|
|
@ -1,3 +1,6 @@
|
|||
6129. [cleanup] Value stored to 'source' during its initialization is
|
||||
never read. [GL #3965]
|
||||
|
||||
6128. [bug] Fix an omission in an earlier commit to avoid a race
|
||||
between the 'dns__catz_update_cb()' and
|
||||
'dns_catz_dbupdate_callback()' functions. [GL #3968]
|
||||
|
|
|
|||
|
|
@ -1090,7 +1090,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