Bug #23325 --> if someone tries to illegally make us resolve a relative url against a mailnews url (imap,

mailbox, news, etc.) just return "about:blank" as the url. Why? 'cause mailnews urls aren't relative and
trying to do so with msgs that don't have base urls associated with them is causing lots of problems.
r=sspitzer,rhp
a=chofmann
This commit is contained in:
mscott%netscape.com 2000-01-21 05:49:20 +00:00
Родитель 6a0991be07
Коммит 5dcede0562
1 изменённых файлов: 8 добавлений и 1 удалений

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

@ -368,7 +368,14 @@ NS_IMETHODIMP nsMsgMailNewsUrl::SetRelativePath(const char *i_RelativePath)
NS_IMETHODIMP nsMsgMailNewsUrl::Resolve(const char *relativePath, char **result)
{
return m_baseURL->Resolve(relativePath, result);
// mailnews urls aren't like http or file urls...
// we don't have relative urls you can resolve against other urls.
// in fact, trying to do so leads to very bad things!! so instead
// of trying to resolve the url, return about:blank as a dummy place holder
// I tried returning just an error code but too many callers always
// assume they get back a url =(
*result = nsCRT::strdup("about:blank");
return NS_OK;
}
NS_IMETHODIMP nsMsgMailNewsUrl::GetDirectory(char * *aDirectory)