Merge "removed the exception handling to skip the frame which data size is 0" am: f376f517f2 am: 0f4a2cb7d6

Original change: https://android-review.googlesource.com/c/platform/frameworks/av/+/1318776

Change-Id: Ie53ea8b211eb00a2288354863fd78843d0b5ef4c
diff --git a/media/libstagefright/id3/ID3.cpp b/media/libstagefright/id3/ID3.cpp
index e97f6eb..5509512 100644
--- a/media/libstagefright/id3/ID3.cpp
+++ b/media/libstagefright/id3/ID3.cpp
@@ -813,10 +813,6 @@
                 baseSize = U32_AT(&mParent.mData[mOffset + 4]);
             }
 
-            if (baseSize == 0) {
-                return;
-            }
-
             // Prevent integer overflow when adding
             if (SIZE_MAX - 10 <= baseSize) {
                 return;