зеркало из https://github.com/mozilla/gecko-dev.git
Bug 57347 --> add a null ptr check to prevent a crash.
patch contributed by waterson r=brendan sr=mscott
This commit is contained in:
Родитель
21c8dfc1ae
Коммит
ac8cc6c8b1
|
@ -73,12 +73,14 @@ NS_IMETHODIMP nsOSHelperAppService::DoContent(const char *aMimeContentType, nsIU
|
||||||
if (aURI)
|
if (aURI)
|
||||||
{
|
{
|
||||||
nsCOMPtr<nsIURL> url = do_QueryInterface(aURI);
|
nsCOMPtr<nsIURL> url = do_QueryInterface(aURI);
|
||||||
|
if (url) {
|
||||||
nsXPIDLCString extenion;
|
nsXPIDLCString extenion;
|
||||||
url->GetFileExtension(getter_Copies(extenion));
|
url->GetFileExtension(getter_Copies(extenion));
|
||||||
|
|
||||||
fileExtension = ".";
|
fileExtension = ".";
|
||||||
fileExtension.Append(extenion);
|
fileExtension.Append(extenion);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (mimeInfo)
|
if (mimeInfo)
|
||||||
{
|
{
|
||||||
|
|
Загрузка…
Ссылка в новой задаче