Revert "[sanitizer] Fix crash on empty strings."

Wrong author name, will recommit shortly.

This reverts commit 262c50856a.
This commit is contained in:
Evgenii Stepanov 2021-01-27 13:20:45 -08:00
parent 2fb0a0fef8
commit e53247ca42
1 changed files with 1 additions and 1 deletions

View File

@ -356,7 +356,7 @@ void ParseSymbolizePCOutput(const char *str, SymbolizedStack *res) {
InternalFree(info->function);
info->function = 0;
}
if (info->file && 0 == internal_strcmp(info->file, "??")) {
if (0 == internal_strcmp(info->file, "??")) {
InternalFree(info->file);
info->file = 0;
}