Backed out changeset 5add0a9fd0fb (bug 1540135) for causing leaks

This commit is contained in:
Mihai Alexandru Michis 2019-05-08 11:15:35 +03:00
parent 259aa236fd
commit 520193d092

View File

@ -81,7 +81,6 @@ const startupPhases = {
}, },
{ // bug 1541200 { // bug 1541200
path: "UAppData:Crash Reports/InstallTime20*", path: "UAppData:Crash Reports/InstallTime20*",
condition: AppConstants.MOZ_CRASHREPORTER,
stat: 1, // only caught on Windows. stat: 1, // only caught on Windows.
read: 1, read: 1,
write: 2, write: 2,
@ -89,13 +88,13 @@ const startupPhases = {
}, },
{ // bug 1541200 { // bug 1541200
path: "UAppData:Crash Reports/LastCrash", path: "UAppData:Crash Reports/LastCrash",
condition: WIN && AppConstants.MOZ_CRASHREPORTER, condition: WIN,
stat: 1, // only caught on Windows. stat: 1, // only caught on Windows.
read: 1, read: 1,
}, },
{ // bug 1541200 { // bug 1541200
path: "UAppData:Crash Reports/LastCrash", path: "UAppData:Crash Reports/LastCrash",
condition: !WIN && AppConstants.MOZ_CRASHREPORTER, condition: !WIN,
ignoreIfUnused: true, // only if we ever crashed on this machine ignoreIfUnused: true, // only if we ever crashed on this machine
read: 1, read: 1,
close: 1, close: 1,
@ -227,7 +226,6 @@ const startupPhases = {
{ {
path: "*ld.so.conf*", path: "*ld.so.conf*",
condition: LINUX, condition: LINUX,
ignoreIfUnused: true,
read: 22, read: 22,
close: 11, close: 11,
}, },
@ -297,7 +295,6 @@ const startupPhases = {
{ {
path: "*ld.so.conf*", path: "*ld.so.conf*",
condition: LINUX, condition: LINUX,
ignoreIfUnused: true,
read: 22, read: 22,
close: 11, close: 11,
}, },