This commit is contained in:
warren%netscape.com 1999-07-07 10:05:59 +00:00
Родитель 9a7f30cb47
Коммит 9aa858c196
1 изменённых файлов: 9 добавлений и 0 удалений

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

@ -2767,10 +2767,19 @@ GlobalWindowImpl::GetOrigin(nsString* aOrigin)
if (mDocument && NS_OK == mDocument->QueryInterface(kIDocumentIID, (void**)&doc)) {
nsIURI* docURL = doc->GetDocumentURL();
if (docURL) {
#ifdef NECKO
char* str;
docURL->GetSpec(&str);
#else
PRUnichar* str;
docURL->ToString(&str);
#endif
*aOrigin = str;
#ifdef NECKO
nsCRT::free(str);
#else
delete str;
#endif
NS_RELEASE(docURL);
}
NS_RELEASE(doc);