From: Nick Mathewson Date: Sat, 12 Jan 2008 05:52:59 +0000 (+0000) Subject: r17580@catbus: nickm | 2008-01-11 20:40:30 -0500 X-Git-Tag: tor-0.2.0.16-alpha~22 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=705b4670d3089cd123282e9bffa5fb4a3ca92754;p=thirdparty%2Ftor.git r17580@catbus: nickm | 2008-01-11 20:40:30 -0500 Fix policies.c build on gcc 4.2 with warnings. svn:r13112 --- diff --git a/src/or/policies.c b/src/or/policies.c index 51ace8e260..f4b52e93dc 100644 --- a/src/or/policies.c +++ b/src/or/policies.c @@ -651,7 +651,8 @@ exit_policy_remove_redundancies(smartlist_t *dest) for (i = 0; i < smartlist_len(dest)-1; ++i) { ap = smartlist_get(dest, i); for (j = i+1; j < smartlist_len(dest); ++j) { - tor_assert(j > i); + // tor_assert(j > i); // j starts out at i+1; j only increases; i only + // // decreases. tmp = smartlist_get(dest, j); if (ap->policy_type != tmp->policy_type) { if (addr_policy_intersects(ap, tmp))