bug 113833 preventing initalization of trace malloc stuff unless

--trace-malloc command line is given. sr=dveditz
This commit is contained in:
dp%netscape.com 2001-12-07 06:41:55 +00:00
parent 5d9dc92c2c
commit bc26d6a0ca
2 changed files with 4 additions and 2 deletions

View File

@ -1712,7 +1712,8 @@ PR_IMPLEMENT(int) NS_TraceMallocStartupArgs(int argc, char* argv[])
}
}
NS_TraceMallocStartup(logfd);
if (logfd >= 0)
NS_TraceMallocStartup(logfd);
return argc;
}

View File

@ -1712,7 +1712,8 @@ PR_IMPLEMENT(int) NS_TraceMallocStartupArgs(int argc, char* argv[])
}
}
NS_TraceMallocStartup(logfd);
if (logfd >= 0)
NS_TraceMallocStartup(logfd);
return argc;
}