mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 13:13:44 +01:00
Free the smartlist after parsing csv config option
Bugfix on 1293835440
, which implemented
6752: Not in any released tor.
This commit is contained in:
parent
3b6c48328b
commit
528e3bf892
@ -392,7 +392,7 @@ config_assign_value(const config_format_t *fmt, void *options,
|
||||
"Interval in '%s %s' is malformed or out of bounds.",
|
||||
c->key, c->value);
|
||||
SMARTLIST_FOREACH(csv_str, char *, cp, tor_free(cp));
|
||||
smartlist_clear(csv_str);
|
||||
smartlist_free(csv_str);
|
||||
return -1;
|
||||
}
|
||||
csv_int = tor_malloc_zero(sizeof(int));
|
||||
@ -401,7 +401,7 @@ config_assign_value(const config_format_t *fmt, void *options,
|
||||
}
|
||||
SMARTLIST_FOREACH_END(str);
|
||||
SMARTLIST_FOREACH(csv_str, char *, cp, tor_free(cp));
|
||||
smartlist_clear(csv_str);
|
||||
smartlist_free(csv_str);
|
||||
break;
|
||||
|
||||
case CONFIG_TYPE_LINELIST:
|
||||
|
Loading…
Reference in New Issue
Block a user