Merge pull request #223 from prymitive/lcf_fixes

free values on old sync node list
This commit is contained in:
unbit
2013-04-10 22:52:55 -07:00
@@ -38,6 +38,7 @@ static int legion_action_cache_fetch_from_legion(struct uwsgi_legion *ul, char *
struct uwsgi_string_list *next;
while (usl) {
next = usl->next;
free(usl->value);
free(usl);
usl = next;
}