[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
Re: unable to submit bug report
On Fri, Jun 05, 2009 at 02:41:53AM -0500, Scott Bennett wrote:
> On Fri, 05 Jun 2009 00:45:11 -0600 Jon <scream@xxxxxxxxxxxxxxxxxx> wrote:
> >Scott Bennett wrote:
> >> Well, I *intended* to submit a bug report, but appear to be unable
> >to log
> >> into the bugs.torproject.org web site to do so. I tried all sorts of
> >things,
> >> including temporarily enabling JavaScript, which I really hate to do.
> >If there
> >> is someone willing to submit the bug report for me, please let me know
> >where
> >> to send the information.
> >> Thanks!
> >>
> >You can send it to me. I've also included my PGP for your use if you
> >so desire.
> >
> Thanks, Jon. I'll put the material together and send it to you as
> quickly as I can. It will be plaintext, though. I haven't used PGP in
> well over a decade.
>
Thank you so much for the stack traces! I have found a bug that I
think might have caused this. (It's a little hard to tell for sure,
because a bunch of functions got inlined.) Can you try this patch
(also uploaded to flyspray)?
diff --git a/src/or/policies.c b/src/or/policies.c
index cb914d1..d55e86c 100644
--- a/src/or/policies.c
+++ b/src/or/policies.c
@@ -411,6 +411,7 @@ load_policy_from_option(config_line_t *config,
smartlist_t **policy,
memcpy(&newp, n, sizeof(newp));
newp.prt_min = 1;
newp.prt_max = 65535;
+ newp.is_canonical = 0;
c = addr_policy_get_canonical_entry(&newp);
SMARTLIST_REPLACE_CURRENT(*policy, n, c);
addr_policy_free(n);
(Also, when we next switch bugtrackers, we should probably switch to
one with an email gateway that works.)
--
Nick