Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 69799885 authored by Hyunyoung Song's avatar Hyunyoung Song Committed by android-build-merger
Browse files

Merge "Wrap StackOverflowError in NotFoundException. Bug: 67462465 Bug:...

Merge "Wrap StackOverflowError in NotFoundException. Bug: 67462465 Bug: 66498711 Test: builds and tested using faulty apk with recursive drawable. Change-Id: I47691343dae892beb5ed8c1c66c33edefade321e (cherry picked from commit dc92d925)" into oc-dev am: 48df0336 am: 69d240d5 am: 3aab9561
am: 7ca6bb95

Change-Id: I449dd9403f7f9eeb92def3ce7162be07971399e2
parents e1e35401 7ca6bb95
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -815,7 +815,7 @@ public class ResourcesImpl {
            } finally {
                stack.pop();
            }
        } catch (Exception e) {
        } catch (Exception | StackOverflowError e) {
            Trace.traceEnd(Trace.TRACE_TAG_RESOURCES);
            final NotFoundException rnf = new NotFoundException(
                    "File " + file + " from drawable resource ID #0x" + Integer.toHexString(id));