bind9/bin/dig
Aram Sargsyan b7cb73160b Remove unneded NULL-checking
Fix an issue reported by Coverity by removing the unneded check.

    *** CID 352554:  Null pointer dereferences  (REVERSE_INULL)
    /bin/dig/dighost.c: 3056 in start_tcp()
    3050
    3051     	if (ISC_LINK_LINKED(query, link)) {
    3052     		next = ISC_LIST_NEXT(query, link);
    3053     	} else {
    3054     		next = NULL;
    3055     	}
    >>>    CID 352554:  Null pointer dereferences  (REVERSE_INULL)
    >>>    Null-checking "connectquery" suggests that it may be null, but it
           has already been dereferenced on all paths leading to the check.
    3056     	if (connectquery != NULL) {
    3057     		query_detach(&connectquery);
    3058     	}
    3059     	query_detach(&query);
    3060     	if (next == NULL) {
    3061     		clear_current_lookup();
2022-06-07 09:51:47 +00:00
..
.gitignore [master] update gitignore files; use rev-parse to get srcid 2014-06-17 13:49:30 -07:00
dig.c Add missing plain HTTP options to dig's help output 2022-03-28 16:22:53 +03:00
dig.rst Add hyperlinks to dig/mdig/delv +options 2022-04-26 12:43:13 +02:00
dighost.c Remove unneded NULL-checking 2022-06-07 09:51:47 +00:00
dighost.h Fix "dig +nssearch" indefinitely hanging issue 2022-04-01 10:56:27 +00:00
host.c Initialize printed buffer 2022-04-29 11:22:40 +10:00
host.rst Add internal hyperlinks to See Also section of manual pages 2022-03-14 10:46:36 +01:00
Makefile.am Move the include Makefile.tests to the bottom of Makefile.am(s) 2021-06-24 15:33:52 +02:00
nslookup.c Replace ISC_NORETURN with C11's noreturn 2022-03-25 08:33:43 +01:00
nslookup.rst Add internal hyperlinks to See Also section of manual pages 2022-03-14 10:46:36 +01:00
readline.h Update the copyright information in all files in the repository 2022-01-11 09:05:02 +01:00