зеркало из https://github.com/mozilla/gecko-dev.git
Bug 822133: Null check gone wrong in Personas. [r=bnicholson]
This commit is contained in:
Родитель
eedf2ba5aa
Коммит
e407a17f2f
|
@ -84,7 +84,7 @@ public class LightweightTheme implements GeckoEventListener {
|
|||
stream.close();
|
||||
|
||||
// The download could be HTTP for previews, so let's be sure we have a bitmap
|
||||
if (mBitmap != null || mBitmap.getWidth() == 0 || mBitmap.getHeight() == 0) {
|
||||
if (mBitmap == null || mBitmap.getWidth() == 0 || mBitmap.getHeight() == 0) {
|
||||
mBitmap = null;
|
||||
return;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче