diff --git a/extension/extension.cpp b/extension/extension.cpp index 4c85c6d..2c75c96 100644 --- a/extension/extension.cpp +++ b/extension/extension.cpp @@ -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;