check if image decoding succeeded before using the result

Fixes #6061
Closes #6080
// FREEBIE
pull/1/head
Benedikt Constantin Radtke 8 years ago committed by Moxie Marlinspike
parent 21a0fe3a48
commit 4461ebf662

@ -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();

Loading…
Cancel
Save