1
1
mirror of https://github.com/swaywm/sway synced 2024-09-24 03:01:05 +02:00

Merge pull request #3411 from RedSoxFan/fix-brace-detect-seeking

config: do not reset pos when braces found
This commit is contained in:
Ian Fan 2019-01-12 01:25:44 +00:00 committed by GitHub
commit d256182f49
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

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