diff --git a/src/common/container.c b/src/common/container.c index 9b63911301..f892cd6773 100644 --- a/src/common/container.c +++ b/src/common/container.c @@ -127,7 +127,7 @@ smartlist_string_remove(smartlist_t *sl, const char *element) tor_assert(sl); tor_assert(element); for (i = 0; i < sl->num_used; ++i) { - if (!strcmp(element, sl->list[i]) { + if (!strcmp(element, sl->list[i])) { sl->list[i] = sl->list[--sl->num_used]; /* swap with the end */ i--; /* so we process the new i'th element */ }