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

Commit 5dd22552 authored by Wink Saville's avatar Wink Saville Committed by Android Git Automerger
Browse files

am 05c6b46b: am 27f0cce0: am 022dc626: Merge "Set RESULT tag properly when sending TR"

* commit '05c6b46b':
  Set RESULT tag properly when sending TR
parents 12b97c47 05c6b46b
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -402,7 +402,10 @@ public class CatService extends Handler implements AppInterface {
        buf.write(DEV_ID_UICC); // destination device id

        // result
        tag = 0x80 | ComprehensionTlvTag.RESULT.value();
        tag = ComprehensionTlvTag.RESULT.value();
        if (cmdDet.compRequired) {
            tag |= 0x80;
        }
        buf.write(tag);
        int length = includeAdditionalInfo ? 2 : 1;
        buf.write(length);