aboutsummaryrefslogtreecommitdiff
path: root/dns/bind95/files/patch-bin_dig_dighost.c
diff options
context:
space:
mode:
Diffstat (limited to 'dns/bind95/files/patch-bin_dig_dighost.c')
-rw-r--r--dns/bind95/files/patch-bin_dig_dighost.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/dns/bind95/files/patch-bin_dig_dighost.c b/dns/bind95/files/patch-bin_dig_dighost.c
new file mode 100644
index 000000000000..91e0706a1f8e
--- /dev/null
+++ b/dns/bind95/files/patch-bin_dig_dighost.c
@@ -0,0 +1,19 @@
+--- bin/dig/dighost.c.orig 2009-06-23 20:42:32.000000000 -0700
++++ bin/dig/dighost.c 2009-11-07 11:10:12.000000000 -0800
+@@ -2606,10 +2606,12 @@
+
+ if (sevent->result == ISC_R_CANCELED) {
+ debug("in cancel handler");
+- isc_socket_detach(&query->sock);
+- sockcount--;
+- INSIST(sockcount >= 0);
+- debug("sockcount=%d", sockcount);
++ if (query->sock != NULL) {
++ isc_socket_detach(&query->sock);
++ sockcount--;
++ INSIST(sockcount >= 0);
++ debug("sockcount=%d", sockcount);
++ }
+ query->waiting_connect = ISC_FALSE;
+ isc_event_free(&event);
+ l = query->lookup;