bind9/bin
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
..
check Remove remaining checks for rbt64 2022-05-03 00:41:42 +01:00
confgen Replace ISC_NORETURN with C11's noreturn 2022-03-25 08:33:43 +01:00
delv Add hyperlinks to dig/mdig/delv +options 2022-04-26 12:43:13 +02:00
dig Remove unneded NULL-checking 2022-06-07 09:51:47 +00:00
dnssec Make all tasks to be bound to a thread 2022-05-25 16:04:51 +02:00
named don't create managed-keys zone unless dnssec-validation is "auto" 2022-05-31 10:51:17 -07:00
nsupdate Make all tasks to be bound to a thread 2022-05-25 16:04:51 +02:00
plugins Make isc_ht optionally case insensitive 2022-03-28 15:02:18 -07:00
rndc Make all tasks to be bound to a thread 2022-05-25 16:04:51 +02:00
tests Retry quiet to deal with kasp test timing issue 2022-06-07 09:33:01 +02:00
tools Shrink decompression contexts 2022-06-01 13:00:40 +01:00
Makefile.am Remove native PKCS#11 support 2021-09-09 15:35:39 +02:00