fixes bug 250900 "nsIBrowserHistory corrupts URI strings [was: crash when a long malformed URL is entered in the Location Bar [@js_CloneFunctionObject]]" r=biesi sr=neil

This commit is contained in:
darin%meer.net 2006-09-14 06:09:53 +00:00
Родитель 60026f8f53
Коммит b139a74a1c
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -223,7 +223,7 @@ function addToUrlbarHistory()
var url = getShortcutOrURI(urlToAdd);
var fixedUpURI = gURIFixup.createFixupURI(url, 0);
if (!fixedUpURI.schemeIs("data"))
gGlobalHistory.markPageAsTyped(fixedUpURI.spec);
gGlobalHistory.markPageAsTyped(fixedUpURI);
}
catch(ex) {
}