]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Avoid tor_fragile_assert() failure with DNSPort on RESOLVED_TYPE_ERROR
authorNick Mathewson <nickm@torproject.org>
Wed, 26 Oct 2016 16:52:34 +0000 (12:52 -0400)
committerNick Mathewson <nickm@torproject.org>
Wed, 26 Oct 2016 18:16:40 +0000 (14:16 -0400)
The tor_fragile_assert() bug has existed here since c8a5e2d588e0d91
in tor-0.2.1.7-alpha forever, but tor_fragile_assert() was mostly a
no-op until 0.2.9.1-alpha.

Fixes bug 19869.

changes/bug19869 [new file with mode: 0644]
src/or/dnsserv.c

diff --git a/changes/bug19869 b/changes/bug19869
new file mode 100644 (file)
index 0000000..430048f
--- /dev/null
@@ -0,0 +1,4 @@
+  o Minor bugfixes (DNSPort):
+    - On DNSPort, stop logging a BUG warning on a failed hostname lookup.
+      Fixes bug 19869; bugfix on 0.2.9.1-alpha.
+
index 04be3e8a6acfcd57482e1c5cc2c96902c534f748..f5a4f2ac0f535b31af7327cd3f2afff3c979b40d 100644 (file)
@@ -290,6 +290,10 @@ evdns_get_orig_address(const struct evdns_server_request *req,
   case RESOLVED_TYPE_IPV6:
     type = EVDNS_TYPE_AAAA;
     break;
+  case RESOLVED_TYPE_ERROR:
+  case RESOLVED_TYPE_ERROR_TRANSIENT:
+     /* Addr doesn't matter, since we're not sending it back in the reply.*/
+    return addr;
   default:
     tor_fragile_assert();
     return addr;