zjupure / GlideWebpDecoder

A Glide WebpDecoder Intergration Library for decoding and displaying webp images
Apache License 2.0
740 stars 91 forks source link

java.lang.IndexOutOfBoundsException #100

Closed WG2017 closed 1 year ago

WG2017 commented 1 year ago

Path: WebpFrameLoader -> void onFrameReady(DelayTarget delayTarget)

Code: // The callbacks may unregister when onFrameReady is called, so iterate in reverse to avoid // concurrent modifications. for (int i = callbacks.size() - 1; i >= 0; i--) { <- callbacks.size() = 1 FrameCallback cb = callbacks.get(i); <- callbacks.size() = 0 cb.onFrameReady(); }

Exception: java.lang.IndexOutOfBoundsException Index: 0, Size: 0