37742976 - Catch bad gifs am: e0f247e399 am: 7c28ca34ec am: 22bbfd7360

am: 7a6b99a4a4

Change-Id: I0817d9c8e4e30630cd0008f93ee31a728342eae1
This commit is contained in:
Tom Taylor
2017-07-12 19:07:09 +00:00
committed by android-build-merger

View File

@@ -23,6 +23,7 @@ import android.support.rastermill.FrameSequence;
import android.support.rastermill.FrameSequenceDrawable; import android.support.rastermill.FrameSequenceDrawable;
import com.android.messaging.util.Assert; import com.android.messaging.util.Assert;
import com.android.messaging.util.LogUtil;
import java.io.IOException; import java.io.IOException;
import java.io.InputStream; import java.io.InputStream;
@@ -55,7 +56,14 @@ public class GifImageResource extends ImageResource {
@Override @Override
public Drawable getDrawable(Resources resources) { public Drawable getDrawable(Resources resources) {
try {
return new FrameSequenceDrawable(mFrameSequence); return new FrameSequenceDrawable(mFrameSequence);
} catch (final Exception e) {
// Malicious gif images can make platform throw different kind of exceptions. Catch
// them all.
LogUtil.e(LogUtil.BUGLE_TAG, "Error getting drawable for GIF", e);
return null;
}
} }
@Override @Override