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

Commit 287dfa10 authored by Wanwu Peng's avatar Wanwu Peng Committed by android-build-merger
Browse files

Merge "Fix MTP_TYPE_UINT128 data conversion issue"

am: ba23e453

* commit 'ba23e453':
  Fix MTP_TYPE_UINT128 data conversion issue

Change-Id: I03c062ce58283f6886ff1d2922755a9a584a73ec
parents 6cecf0c8 ba23e453
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -429,7 +429,7 @@ MtpResponseCode MyMtpDatabase::getObjectPropertyValue(MtpObjectHandle handle,
                packet.putInt128(longValue);
                packet.putInt128(longValue);
                break;
                break;
            case MTP_TYPE_UINT128:
            case MTP_TYPE_UINT128:
                packet.putInt128(longValue);
                packet.putUInt128(longValue);
                break;
                break;
            case MTP_TYPE_STR:
            case MTP_TYPE_STR:
            {
            {