config: do not reset pos when braces found

When a brace is found, the config file should not seek back to before
the brace, otherwise the brace will be read multiple times.
master
Brian Ashworth 6 years ago
parent 33d9de88ef
commit 39975ccfb5

@ -613,7 +613,9 @@ static int detect_brace(FILE *file) {
} }
} }
free(line); free(line);
if (ret == 0) {
fseek(file, pos, SEEK_SET); fseek(file, pos, SEEK_SET);
}
return ret; return ret;
} }

Loading…
Cancel
Save