Bug 1168129 Fix ssltunnel.cpp FAIL_ON_WARNING build errors on some platforms. r=ted

This commit is contained in:
Ben Kelly 2015-05-27 14:10:10 -07:00
parent 021ed38d58
commit 989324d495

View File

@ -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':