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

This commit is contained in:
ted.mielczarek%gmail.com 2007-12-10 18:47:29 +00:00
Родитель a286849da1
Коммит 8acd077a10
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -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);