Compare commits

...

1 Commits

Author SHA1 Message Date
Nicholas Nethercote
7fc25b8962 Fix a trivial parsing bug caught by static analysis
R=ted
2016-06-10 09:51:14 -04:00

View File

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