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

Commit 3e8d919b authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Fix the missing std"

parents 25e2f1de 0fcb1af6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -128,10 +128,10 @@ void MtpFfsHandleFuzzer::invokeMtpFfsHandle() {
        std::unique_ptr<IMtpHandle> handle;
        if (mFdp.ConsumeBool()) {
            std::unique_ptr<IMtpHandle> mtpCompactHandle(new MtpFfsCompatHandle(controlFd));
            handle = move(mtpCompactHandle);
            handle = std::move(mtpCompactHandle);
        } else {
            std::unique_ptr<IMtpHandle> mtpHandle(new MtpFfsHandle(controlFd));
            handle = move(mtpHandle);
            handle = std::move(mtpHandle);
        }

        int32_t mtpHandle = mFdp.ConsumeIntegralInRange<size_t>(kMinAPICase, kMaxMtpHandleAPI);