зеркало из https://github.com/mozilla/gecko-dev.git
Bug 567077 - Fix an assertion failure when the decoder is cloned. r=cpearce
This commit is contained in:
Родитель
02155af3db
Коммит
66391e9a19
|
@ -1034,6 +1034,11 @@ nsresult nsHTMLMediaElement::LoadResource()
|
|||
if (other) {
|
||||
// Clone it.
|
||||
nsresult rv = InitializeDecoderAsClone(other->mDecoder);
|
||||
// Get the mimetype from the element we clone, since we will not get it via
|
||||
// the channel, and we won't be able to sniff for it, because we will not
|
||||
// open a channel to get the beginning of the media (it is likely to already
|
||||
// be in the cache).
|
||||
mMimeType = other->mMimeType;
|
||||
if (NS_SUCCEEDED(rv))
|
||||
return rv;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче