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

Commit 859efb0a authored by Yi Kong's avatar Yi Kong Committed by Automerger Merge Worker
Browse files

security: Remove unnecessary std::move am: 99df7ced

parents 0c487a31 99df7ced
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -151,7 +151,7 @@ void KeyMintAttestationFuzzer::process() {

extern "C" int LLVMFuzzerInitialize(int /* *argc */, char /* ***argv */) {
    ::ndk::SpAIBinder binder(AServiceManager_waitForService(kServiceName.c_str()));
    gKeyMint = std::move(IKeyMintDevice::fromBinder(binder));
    gKeyMint = IKeyMintDevice::fromBinder(binder);
    LOG_ALWAYS_FATAL_IF(!gKeyMint, "Failed to get IKeyMintDevice instance.");
    return 0;
}