moria1 asserts on startup
``` Oct 10 23:23:01.238 [notice] Bootstrapped 90%: Establishing a Tor circuit. Oct 10 23:23:10.342 [notice] Self-testing indicates your ORPort is reachable from the outside. Excellent. Publishing server descriptor. Oct 10 23:23:10.632 [warn] tor_addr_is_internal(): Bug: tor_addr_is_internal() called with a non-IP address of type 0 Oct 10 23:23:10.821 [warn] tor_addr_is_internal(): Bug: tor_addr_is_internal() called with a non-IP address of type 0 Oct 10 23:23:11.009 [err] channel_change_state(): Bug: src/or/channel.c:1913: channel_change_state: Assertion !(chan->incoming_queue) || smartlist_len(chan->incoming_queue) == 0 failed; aborting. src/or/channel.c:1913 channel_change_state: Assertion !(chan->incoming_queue) || smartlist_len(chan->incoming_queue) == 0 failed; aborting. ``` The tor_addr_is_internal bug lines appear to be begindir requests: ``` Oct 10 23:23:10.819 [info] connection_exit_connect_dir(): Opening local connection for anonymized directory exit Oct 10 23:23:10.821 [warn] tor_addr_is_internal(): Bug: tor_addr_is_internal() called with a non-IP address of type 0 Oct 10 23:23:10.821 [info] _connection_free(): Freeing linked Directory connection [writing] with 0 bytes on inbuf, 0 on outbuf. ``` I'm working on getting a traceback, but the PIE stuff makes it hard.
issue