Fix linux orange. r=pav, sr=ben

This commit is contained in:
hyatt%netscape.com 2001-04-10 05:06:57 +00:00
Родитель 3f230b528f
Коммит 75145f0e74
1 изменённых файлов: 3 добавлений и 2 удалений

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

@ -103,8 +103,9 @@ nsresult imgRequest::AddObserver(imgIDecoderObserver *observer)
observer->OnStartContainer(nsnull, nsnull, mImage);
// Send frame messages (OnStartFrame, OnDataAvailable, OnStopFrame)
PRUint32 nframes;
mImage->GetNumFrames(&nframes);
PRUint32 nframes = 0;
if (mImage)
mImage->GetNumFrames(&nframes);
if (nframes > 0) {
nsCOMPtr<gfxIImageFrame> frame;