forked from OSchip/llvm-project
Revert "[sanitizer] Fix crash on empty strings."
Wrong author name, will recommit shortly.
This reverts commit 262c50856a
.
This commit is contained in:
parent
2fb0a0fef8
commit
e53247ca42
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue