Bug 583542 - [e10s] nsExternalHelperAppService fails when called from content process (build fix)

This commit is contained in:
Matt Brubeck 2010-08-05 16:35:44 -07:00
Родитель 4313e5d68c
Коммит 6813b612e2
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -476,7 +476,7 @@ bool
ContentParent::RecvLoadURIExteneral(const URI& uri)
{
nsCOMPtr<nsIExternalProtocolService> extProtService (do_GetService(NS_EXTERNALPROTOCOLSERVICE_CONTRACTID));
nsCOMPtr<nsIURI> ourURI = uri;
nsCOMPtr<nsIURI> ourURI(uri);
extProtService->LoadURI(ourURI, nsnull);
return true;
}