Merge "fastboot: Use copy constructor to copy fastboot match callback"

This commit is contained in:
Dmitrii Merkurev 2023-02-15 19:05:55 +00:00 committed by Gerrit Code Review
commit 45380e4ace

View file

@ -456,8 +456,7 @@ static int init_usb(ifc_match_func callback, std::unique_ptr<usb_handle>* handle
}
if (h.success) {
handle->reset(new usb_handle);
memcpy(handle->get(), &h, sizeof(usb_handle));
handle->reset(new usb_handle(h));
ret = 0;
break;
}