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

Commit 21ef6ecb authored by Chong Zhang's avatar Chong Zhang
Browse files

Fix deleter type mismatch

bug: 112713405
Change-Id: I6c6f42bca2eb24ab6efe28ef6fdc4d73a959bded
parent fdfae289
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -74,7 +74,7 @@ struct HeifFrameInfo
    int32_t  mRotationAngle;           // Rotation angle, clockwise, should be multiple of 90
    uint32_t mBytesPerPixel;           // Number of bytes for one pixel
    uint32_t mIccSize;                 // Number of bytes in mIccData
    std::unique_ptr<uint8_t> mIccData; // Actual ICC data, memory is owned by this structure
    std::unique_ptr<uint8_t[]> mIccData; // Actual ICC data, memory is owned by this structure
};

/*