Skip to content

Commit

Permalink
Fix cleanup bug
Browse files Browse the repository at this point in the history
  • Loading branch information
tacketar authored and PerilousApricot committed Apr 25, 2017
1 parent 37fa557 commit e387592
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/lio/blacklist.c
Expand Up @@ -42,6 +42,7 @@ void blacklist_remove_rs_added(lio_blacklist_t *bl)
for (hi=apr_hash_first(NULL, bl->table); hi != NULL; hi = apr_hash_next(hi)) {
apr_hash_this(hi, NULL, &hlen, (void **)&r);
if (r->rs_added > 0) {
apr_hash_set(bl->table, r->rid, APR_HASH_KEY_STRING, NULL);
free(r->rid);
free(r);
}
Expand Down

0 comments on commit e387592

Please sign in to comment.