Hack around url parsing bug; urls that start with / are not absolute even if they contain a colon

This commit is contained in:
kipp 1998-07-14 15:24:32 +00:00
Родитель 2a54790f09
Коммит e450a78d6b
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -246,7 +246,7 @@ nsresult URLImpl::ParseURL(const nsIURL* aURL, const nsString& aSpec)
}
const char* cp = PL_strchr(cSpec, ':');
if (nsnull == cp) {
if ((nsnull == cp) || ('/' == cSpec[0])) {
// relative spec
if (nsnull == aURL) {
delete cSpec;