mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-24 04:13:28 +01:00
Merge remote-tracking branch 'tor-github/pr/1114' into maint-0.3.5
This commit is contained in:
commit
4662cbec7b
4
changes/bug30894
Normal file
4
changes/bug30894
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
o Minor bugfixes (memory leaks):
|
||||||
|
- Fix a trivial memory leak when parsing an invalid value
|
||||||
|
from a download schedule in the configuration. Fixes bug
|
||||||
|
30894; bugfix on 0.3.4.1-alpha.
|
@ -225,6 +225,7 @@ config_assign_value(const config_format_t *fmt, void *options,
|
|||||||
tor_asprintf(msg,
|
tor_asprintf(msg,
|
||||||
"Interval '%s %s' is malformed or out of bounds.",
|
"Interval '%s %s' is malformed or out of bounds.",
|
||||||
c->key, c->value);
|
c->key, c->value);
|
||||||
|
tor_free(tmp);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
*(int *)lvalue = i;
|
*(int *)lvalue = i;
|
||||||
|
Loading…
Reference in New Issue
Block a user