File bug-buddy-hardcode-dump-path.patch of Package bug-buddy
Index: google-breakpad/src/client/linux/handler/exception_handler.cc
===================================================================
--- google-breakpad/src/client/linux/handler/exception_handler.cc (revision 2460)
+++ google-breakpad/src/client/linux/handler/exception_handler.cc (working copy)
@@ -231,7 +231,11 @@ bool ExceptionHandler::InternalWriteMini
if (CreateGUID(&guid) && GUIDToString(&guid, guid_str, sizeof(guid_str))) {
char minidump_path[PATH_MAX];
snprintf(minidump_path, sizeof(minidump_path), "%s/%s.dmp",
- dump_path_c_,
+ //dump_path_c_,
+ // Hardcoding the following line for now until upstream finds out
+ // why dump_path_c_ is being overwritten by the time this function
+ // is called.
+ "/tmp",
guid_str);
// Block all the signals we want to process when writting minidump.