Bug 583200 - Don't assert things about SHEntries if session history is disabled.

This commit is contained in:
Blake Kaplan 2010-08-12 21:05:05 -07:00
Родитель ff41724d9d
Коммит 4afc2373f0
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -9045,7 +9045,7 @@ nsDocShell::OnNewURI(nsIURI * aURI, nsIChannel * aChannel, nsISupports* aOwner,
(" shAvailable=%i updateHistory=%i equalURI=%i\n",
shAvailable, updateHistory, equalUri));
if (mCurrentURI && !mOSHE && aLoadType != LOAD_ERROR_PAGE) {
if (shAvailable && mCurrentURI && !mOSHE && aLoadType != LOAD_ERROR_PAGE) {
NS_ASSERTION(IsAboutBlank(mCurrentURI), "no SHEntry for a non-transient viewer?");
}
#endif