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

Commit 33ea5a4e authored by Mike Lockwood's avatar Mike Lockwood
Browse files

MTP: Fix wrong delete operator from previous change.



Change-Id: I64e8fdc610495f21060727b6bed42d1584833405
Signed-off-by: default avatarMike Lockwood <lockwood@android.com>
parent 4b322ce4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -412,7 +412,7 @@ MtpResponseCode MtpServer::doGetObjectPropsSupported() {
    MtpObjectFormat format = mRequest.getParameter(1);
    MtpDevicePropertyList* properties = mDatabase->getSupportedObjectProperties(format);
    mData.putAUInt16(properties);
    delete[] properties;
    delete properties;
    return MTP_RESPONSE_OK;
}