Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions extension/extension.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -565,17 +565,17 @@ class UploadThread: public IThread
};

std::ostringstream outputStream;
google_breakpad::DumpOptions options(ALL_SYMBOL_DATA, true, true, true);
google_breakpad::DumpOptions options(ALL_SYMBOL_DATA, true, true, false);

{
StderrInhibitor stdrrInhibitor;

if (!WriteSymbolFile(debugFile, debugFile, debugFile, "Linux", debug_dirs, options, outputStream)) {
if (!WriteSymbolFile(debugFile, debugFile, "Linux", "", debug_dirs, options, outputStream)) {
outputStream.str("");
outputStream.clear();

// Try again without debug dirs.
if (!WriteSymbolFile(debugFile, debugFile, debugFile, "Linux", {}, options, outputStream)) {
if (!WriteSymbolFile(debugFile, debugFile, "Linux", "", {}, options, outputStream)) {
if (log) fprintf(log, "Failed to process symbol file\n");
if (log) fflush(log);
return false;
Expand Down