check if image decoding succeeded before using the result

Fixes #6061
Closes #6080
// FREEBIE
fork-5.53.8
Benedikt Constantin Radtke 2017-01-21 21:08:13 +01:00 zatwierdzone przez Moxie Marlinspike
rodzic 21a0fe3a48
commit 4461ebf662
1 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -59,6 +59,10 @@ public class BitmapUtil {
constraints.getImageMaxHeight(context),
DecodeFormat.PREFER_RGB_565);
if (scaledBitmap == null) {
throw new BitmapDecodingException("Unable to decode image");
}
try {
do {
ByteArrayOutputStream baos = new ByteArrayOutputStream();