Bug 789741 - Fix a crash in nsMediaSniffer::GetMIMETypeFromContent. r=bz

This commit is contained in:
Paul Adenot 2012-09-10 09:57:17 -04:00
Родитель 2ba921a9a1
Коммит 7683743c75
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -75,6 +75,9 @@ nsMediaSniffer::GetMIMETypeFromContent(nsIRequest* aRequest,
// For media, we want to sniff only if the Content-Type is unknown, or if it
// is application/octet-stream.
nsCOMPtr<nsIChannel> channel = do_QueryInterface(aRequest);
if (!channel) {
return NS_ERROR_NOT_AVAILABLE;
}
nsAutoCString contentType;
nsresult rv = channel->GetContentType(contentType);
NS_ENSURE_SUCCESS(rv, rv);