Bug 906402 - security exception when checking signature of favicon, r=mfinkle

This commit is contained in:
Mark Capella 2013-10-29 08:42:37 -04:00
Родитель 65699b67e3
Коммит 723c1317fc
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -61,6 +61,11 @@ public final class BitmapUtils {
return GeckoJarReader.getBitmapDrawable(context.getResources(), data);
}
// Don't attempt to validate the JAR signature when loading an add-on icon
if (data.startsWith("jar:file")) {
return GeckoJarReader.getBitmapDrawable(context.getResources(), Uri.decode(data));
}
URL url = new URL(data);
InputStream is = (InputStream) url.getContent();
try {