зеркало из https://github.com/mozilla/gecko-dev.git
Bug 738976 - java.lang.NullPointerException at org.mozilla.gecko.db.LocalBrowserDB.updateFaviconForUrl r=blassey
This commit is contained in:
Родитель
13664ddebb
Коммит
36021219b1
|
@ -593,6 +593,8 @@ public class LocalBrowserDB implements BrowserDB.BrowserDBIface {
|
||||||
public void updateFaviconForUrl(ContentResolver cr, String uri,
|
public void updateFaviconForUrl(ContentResolver cr, String uri,
|
||||||
BitmapDrawable favicon) {
|
BitmapDrawable favicon) {
|
||||||
Bitmap bitmap = favicon.getBitmap();
|
Bitmap bitmap = favicon.getBitmap();
|
||||||
|
if (bitmap == null)
|
||||||
|
return;
|
||||||
|
|
||||||
ByteArrayOutputStream stream = new ByteArrayOutputStream();
|
ByteArrayOutputStream stream = new ByteArrayOutputStream();
|
||||||
bitmap.compress(Bitmap.CompressFormat.PNG, 100, stream);
|
bitmap.compress(Bitmap.CompressFormat.PNG, 100, stream);
|
||||||
|
|
Загрузка…
Ссылка в новой задаче