Bug 822133: Null check gone wrong in Personas. [r=bnicholson]

This commit is contained in:
Sriram Ramasubramanian 2012-12-17 10:39:06 -08:00
Родитель eedf2ba5aa
Коммит e407a17f2f
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -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;
}