Skip to content

Commit

Permalink
Fixed Proprietary info feild skipping in Samuel Berube's voicemail no…
Browse files Browse the repository at this point in the history
…tification patch (#11318)

Change-Id: I783b438449a63134ba0f6ae332dd7dc3ddbd5c81
  • Loading branch information
superatrain committed Feb 3, 2012
1 parent 51937ce commit 15d7889
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -336,9 +336,10 @@ private void ParseUICCTLVData(byte[] data, int[] arrayToReturn) throws IccFileTy
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;
}
Expand Down

0 comments on commit 15d7889

Please sign in to comment.