mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 15:58:43 +00:00
security: Remove unnecessary std::move am: 99df7ced5d
Original change: https://android-review.googlesource.com/c/platform/hardware/interfaces/+/3217977 Change-Id: I8cdfdc8174083145f314630c57b3d11a45a59ea7 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user