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

Commit 0521546b authored by Ahron Train's avatar Ahron Train Committed by rmcc@arcee-kang1
Browse files

Fixed Proprietary info feild skipping in Samuel Berube's voicemail notification patch (#11318)

Change-Id: I783b438449a63134ba0f6ae332dd7dc3ddbd5c81
parent 09ee8dd2
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -336,9 +336,10 @@ public abstract class IccFileHandler extends Handler implements IccConstants {
            curByte += curSectionLen;

            // Proprietary info '0xA5' (optional)
            curTag = ((int)data[curByte++]) & 0xFF;
            curTag = ((int)data[curByte]) & 0xFF;
            if (curTag == 0xA5) {
                // Not needed, just skip it...
                curByte++;
                curSectionLen = data[curByte++];
                curByte += curSectionLen;
            }