mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1168129 Fix ssltunnel.cpp FAIL_ON_WARNING build errors on some platforms. r=ted
This commit is contained in:
parent
021ed38d58
commit
989324d495
@ -1369,7 +1369,11 @@ int parseConfigFile(const char* filePath)
|
||||
while (!feof(f))
|
||||
{
|
||||
char c;
|
||||
fscanf(f, "%c", &c);
|
||||
|
||||
if (fscanf(f, "%c", &c) != 1) {
|
||||
break;
|
||||
}
|
||||
|
||||
switch (c)
|
||||
{
|
||||
case '\n':
|
||||
|
Loading…
Reference in New Issue
Block a user