Reverting bug 326925 because of a 6.5% Ts increase, even in static builds.

This commit is contained in:
benjamin@smedbergs.us
2006-04-13 17:24:12 +00:00
parent 0309b67e0d
commit 253100338a
2 changed files with 2 additions and 12 deletions

View File

@@ -1586,12 +1586,7 @@ nsLocalFile::Load(PRLibrary **_retval)
NS_TIMELINE_START_TIMER("PR_LoadLibrary");
PRLibSpec ls = {
PR_LibSpec_Pathname,
mPath.get()
};
*_retval = PR_LoadLibraryWithFlags(ls, PR_LD_NOW);
*_retval = PR_LoadLibrary(mPath.get());
NS_TIMELINE_STOP_TIMER("PR_LoadLibrary");
NS_TIMELINE_MARK_TIMER1("PR_LoadLibrary", mPath.get());