зеркало из https://github.com/mozilla/gecko-dev.git
Bug 906402 - security exception when checking signature of favicon, r=mfinkle
This commit is contained in:
Родитель
65699b67e3
Коммит
723c1317fc
|
@ -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 {
|
||||
|
|
Загрузка…
Ссылка в новой задаче