Loading dom/fetch/FetchDriver.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -69,7 +69,7 @@ void GetBlobURISpecFromChannel(nsIRequest* aRequest, nsCString& aBlobURISpec) { } nsCOMPtr<nsIURI> uri; nsresult rv = channel->GetURI(getter_AddRefs(uri)); nsresult rv = NS_GetFinalChannelURI(channel, getter_AddRefs(uri)); if (NS_FAILED(rv)) { return; } Loading toolkit/components/antitracking/AntiTrackingUtils.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -84,7 +84,7 @@ already_AddRefed<nsIURI> AntiTrackingUtils::MaybeGetDocumentURIBeingLoaded( // coming from an OnStopRequest notification, which might mean that our // document may still be in the loading process, so we may need to pass in // the uriBeingLoaded argument explicitly. rv = aChannel->GetURI(getter_AddRefs(uriBeingLoaded)); rv = NS_GetFinalChannelURI(aChannel, getter_AddRefs(uriBeingLoaded)); if (NS_WARN_IF(NS_FAILED(rv))) { return nullptr; } Loading Loading
dom/fetch/FetchDriver.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -69,7 +69,7 @@ void GetBlobURISpecFromChannel(nsIRequest* aRequest, nsCString& aBlobURISpec) { } nsCOMPtr<nsIURI> uri; nsresult rv = channel->GetURI(getter_AddRefs(uri)); nsresult rv = NS_GetFinalChannelURI(channel, getter_AddRefs(uri)); if (NS_FAILED(rv)) { return; } Loading
toolkit/components/antitracking/AntiTrackingUtils.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -84,7 +84,7 @@ already_AddRefed<nsIURI> AntiTrackingUtils::MaybeGetDocumentURIBeingLoaded( // coming from an OnStopRequest notification, which might mean that our // document may still be in the loading process, so we may need to pass in // the uriBeingLoaded argument explicitly. rv = aChannel->GetURI(getter_AddRefs(uriBeingLoaded)); rv = NS_GetFinalChannelURI(aChannel, getter_AddRefs(uriBeingLoaded)); if (NS_WARN_IF(NS_FAILED(rv))) { return nullptr; } Loading