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

Commit d3e4944c authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Fix the missing std" am: 3e8d919b am: 65db3933

parents 64bd2925 65db3933
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);