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

Commit 5ea7711a authored by George Burgess IV's avatar George Burgess IV Committed by android-build-merger
Browse files

Merge "img_utils: fix static analyzer complaints" am: 69545369 am: 5f15fcc8 am: fdbafb6a

am: 04790854

Change-Id: Ibacbd990fe9f5a935a5ccc4d825716cdca5718ab
parents 7424e253 04790854
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -350,7 +350,7 @@ sp<TiffIfd> TiffWriter::findLastIfd() {
        if (nextIfd == NULL) {
            break;
        }
        ifd = nextIfd;
        ifd = std::move(nextIfd);
    }
    return ifd;
}