зеркало из https://github.com/mozilla/pjs.git
Make sure pointer has a value before dereferencing it.
This commit is contained in:
Родитель
e91ce654d5
Коммит
109e475a84
|
@ -334,7 +334,7 @@ nsTitledButtonFrame::UpdateImage(nsIPresContext& aPresContext)
|
|||
|
||||
if (mImageLoader.IsImageSizeKnown()) {
|
||||
nsIImage* image = mImageLoader.GetImage();
|
||||
if (image->GetWidth() == mImageRect.width && image->GetHeight() == mImageRect.height) {
|
||||
if (image && image->GetWidth() == mImageRect.width && image->GetHeight() == mImageRect.height) {
|
||||
reflow = PR_FALSE;
|
||||
Invalidate(nsRect(0, 0, mRect.width, mRect.height), PR_FALSE);
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче