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

Commit 7a83ee9a authored by Marco Nelissen's avatar Marco Nelissen Committed by android-build-merger
Browse files

Merge "Fix MTP_TYPE_UINT128 data conversion issue" am: ba23e453

am: 287dfa10

* commit '287dfa10':
  Fix MTP_TYPE_UINT128 data conversion issue

Change-Id: I72aa6c2bcd009a2e0607832c44dc4b96c5da6b1f
parents 62ba1dfe 287dfa10
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -444,7 +444,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:
            {
            {