Bug 1329570 - Restore missing error check in mozilla::dom::Location::GetPathname

native in moebius
This commit is contained in:
janekptacijarabaci 2018-04-22 21:00:39 +02:00 committed by Roy Tam
commit 75dcd43896

View file

@ -577,9 +577,10 @@ Location::GetPathname(nsAString& aPathname)
aPathname.Truncate();
nsCOMPtr<nsIURI> uri;
nsresult result = NS_OK;
result = GetURI(getter_AddRefs(uri));
nsresult result = GetURI(getter_AddRefs(uri));
if (NS_FAILED(result) || !uri) {
return result;
}
nsCOMPtr<nsIURIWithQuery> url(do_QueryInterface(uri));
if (url) {