mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-25 07:07:52 +01:00
c99 style in loop
This commit is contained in:
parent
3507fead10
commit
1e71e2c104
1 changed files with 1 additions and 2 deletions
|
@ -124,8 +124,7 @@ tor_main_configuration_free(tor_main_configuration_t *cfg)
|
|||
if (cfg == NULL)
|
||||
return;
|
||||
if (cfg->argv_owned) {
|
||||
int i;
|
||||
for (i = 0; i < cfg->argc_owned; ++i) {
|
||||
for (int i = 0; i < cfg->argc_owned; ++i) {
|
||||
raw_free(cfg->argv_owned[i]);
|
||||
}
|
||||
raw_free(cfg->argv_owned);
|
||||
|
|
Loading…
Add table
Reference in a new issue