Skip to content
Snippets Groups Projects
Commit 705b4670 authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

r17580@catbus: nickm | 2008-01-11 20:40:30 -0500

 Fix policies.c build on gcc 4.2 with warnings.


svn:r13112
parent d6b53010
No related branches found
No related tags found
No related merge requests found
......@@ -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))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment