bug 407229 - breakpad fails to send on Fedora F8. r=bsmedberg

git-svn-id: svn://10.0.0.236/trunk@240738 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
ted.mielczarek%gmail.com
2007-12-10 18:47:29 +00:00
parent aad219414d
commit 64f82eff86

View File

@@ -298,6 +298,9 @@ bool MinidumpCallback(const XP_CHAR* dump_path,
if (pid == -1)
return false;
else if (pid == 0) {
// need to clobber this, as libcurl might load NSS,
// and we want it to load the system NSS.
unsetenv("LD_LIBRARY_PATH");
(void) execl(crashReporterPath,
crashReporterPath, minidumpPath, (char*)0);
_exit(1);