mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-23 22:47:12 +01:00
fix an infinite loop at hup
svn:r4850
This commit is contained in:
parent
7f78be1659
commit
61f728f4fe
1 changed files with 2 additions and 0 deletions
|
@ -2016,6 +2016,8 @@ config_lines_eq(config_line_t *a, config_line_t *b)
|
|||
while (a && b) {
|
||||
if (strcasecmp(a->key, b->key) || strcmp(a->value, b->value))
|
||||
return 0;
|
||||
a = a->next;
|
||||
b = b->next;
|
||||
}
|
||||
if (a || b)
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue