зеркало из https://github.com/mozilla/gecko-dev.git
Fixing the remaining part of #12559. r=gagan
This commit is contained in:
Родитель
8a61da905b
Коммит
48b2155a46
|
@ -480,23 +480,36 @@ NS_IMETHODIMP
|
||||||
nsHTMLAnchorElement::GetPathname(nsString& aPathname)
|
nsHTMLAnchorElement::GetPathname(nsString& aPathname)
|
||||||
{
|
{
|
||||||
nsAutoString href;
|
nsAutoString href;
|
||||||
nsIURI *url;
|
nsCOMPtr<nsIURI> uri;
|
||||||
nsresult result = NS_OK;
|
nsresult result = NS_OK;
|
||||||
|
|
||||||
|
aPathname.Truncate();
|
||||||
|
|
||||||
result = GetHref(href);
|
result = GetHref(href);
|
||||||
if (NS_OK == result) {
|
if (NS_FAILED(result)) {
|
||||||
result = NS_NewURI(&url, href);
|
return result;
|
||||||
if (NS_OK == result) {
|
|
||||||
char* file;
|
|
||||||
result = url->GetPath(&file);
|
|
||||||
if (result == NS_OK) {
|
|
||||||
aPathname.SetString(file);
|
|
||||||
nsCRT::free(file);
|
|
||||||
}
|
|
||||||
NS_IF_RELEASE(url);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
result = NS_NewURI(getter_AddRefs(uri), href);
|
||||||
|
if (NS_FAILED(result)) {
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
nsCOMPtr<nsIURL> url(do_QueryInterface(uri));
|
||||||
|
|
||||||
|
if (!url) {
|
||||||
|
return NS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
char* file;
|
||||||
|
result = url->GetFilePath(&file);
|
||||||
|
if (NS_FAILED(result)) {
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
aPathname.SetString(file);
|
||||||
|
nsCRT::free(file);
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -480,23 +480,36 @@ NS_IMETHODIMP
|
||||||
nsHTMLAnchorElement::GetPathname(nsString& aPathname)
|
nsHTMLAnchorElement::GetPathname(nsString& aPathname)
|
||||||
{
|
{
|
||||||
nsAutoString href;
|
nsAutoString href;
|
||||||
nsIURI *url;
|
nsCOMPtr<nsIURI> uri;
|
||||||
nsresult result = NS_OK;
|
nsresult result = NS_OK;
|
||||||
|
|
||||||
|
aPathname.Truncate();
|
||||||
|
|
||||||
result = GetHref(href);
|
result = GetHref(href);
|
||||||
if (NS_OK == result) {
|
if (NS_FAILED(result)) {
|
||||||
result = NS_NewURI(&url, href);
|
return result;
|
||||||
if (NS_OK == result) {
|
|
||||||
char* file;
|
|
||||||
result = url->GetPath(&file);
|
|
||||||
if (result == NS_OK) {
|
|
||||||
aPathname.SetString(file);
|
|
||||||
nsCRT::free(file);
|
|
||||||
}
|
|
||||||
NS_IF_RELEASE(url);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
result = NS_NewURI(getter_AddRefs(uri), href);
|
||||||
|
if (NS_FAILED(result)) {
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
nsCOMPtr<nsIURL> url(do_QueryInterface(uri));
|
||||||
|
|
||||||
|
if (!url) {
|
||||||
|
return NS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
char* file;
|
||||||
|
result = url->GetFilePath(&file);
|
||||||
|
if (NS_FAILED(result)) {
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
aPathname.SetString(file);
|
||||||
|
nsCRT::free(file);
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче