Bug 1106448 - Make sure we have a frame in GetCurrentFrameRef. r=tn

This commit is contained in:
Seth Fowler 2014-12-03 10:02:19 -08:00
Родитель cc764fac92
Коммит 26ef664ae8
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -194,7 +194,8 @@ public:
RawAccessFrameRef GetCurrentFrameRef()
{
return mCurrentFrame->RawAccessRef();
return mCurrentFrame ? mCurrentFrame->RawAccessRef()
: RawAccessFrameRef();
}
protected: