Fix a trivial parsing bug caught by static analysis

R=ted
This commit is contained in:
Nicholas Nethercote 2016-06-10 09:51:14 -04:00 committed by Ted Mielczarek
parent c65ed6573e
commit 7fc25b8962

View file

@ -483,7 +483,7 @@ bool SymbolParseHelper::ParseFile(char *file_line, long *index,
}
*filename = tokens[1];
if (!filename) {
if (!*filename) {
return false;
}