Bug 700555 - Add null check in nsBuiltinDecoder::NotifyDataArrived. r=doublec

This commit is contained in:
Matthew Gregan 2011-11-09 15:42:26 +13:00
Родитель 13809208a1
Коммит 2a0284468b
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -501,7 +501,9 @@ class nsBuiltinDecoder : public nsMediaDecoder
}
virtual void NotifyDataArrived(const char* aBuffer, PRUint32 aLength, PRUint32 aOffset) {
return mDecoderStateMachine->NotifyDataArrived(aBuffer, aLength, aOffset);
if (mDecoderStateMachine) {
mDecoderStateMachine->NotifyDataArrived(aBuffer, aLength, aOffset);
}
}
// Sets the length of the framebuffer used in MozAudioAvailable events.