From aeebca4690210e60b6dec3ae12764a4be47bd093 Mon Sep 17 00:00:00 2001 From: "blakeross%telocity.com" Date: Wed, 25 Dec 2002 05:10:36 +0000 Subject: [PATCH] Fix the cookie bug. Maybe. --- toolkit/xre/nsAppRunner.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/toolkit/xre/nsAppRunner.cpp b/toolkit/xre/nsAppRunner.cpp index ac541fd0b22d..5de7358b042f 100644 --- a/toolkit/xre/nsAppRunner.cpp +++ b/toolkit/xre/nsAppRunner.cpp @@ -874,9 +874,7 @@ static nsresult DoOnShutdown() nsCOMPtr profileMgr(do_GetService(NS_PROFILE_CONTRACTID, &rv)); NS_ASSERTION(NS_SUCCEEDED(rv), "failed to get profile manager, so unable to update last modified time"); if (NS_SUCCEEDED(rv)) { - // 0 is undefined, we use this secret value so that we don't notify - profileMgr->ShutDownCurrentProfile(0); - } + profileMgr->ShutDownCurrentProfile(nsIProfile::SHUTDOWN_PERSIST); } } // at this point, all that is on the clipboard is a proxy object, but that object