[core] Fix stupid bug (#889)
This commit is contained in:
parent
a5febe8f86
commit
59931f4f6e
|
|
@ -93,7 +93,7 @@ namespace art {
|
|||
bool, ShouldUseInterpreterEntrypoint, (void * art_method,
|
||||
const void *quick_code), {
|
||||
if (quick_code != nullptr &&
|
||||
lspd::isHooked(art_method) || lspd::IsMethodPending(art_method)) [[unlikely]] {
|
||||
(lspd::isHooked(art_method) || lspd::IsMethodPending(art_method))) [[unlikely]] {
|
||||
return false;
|
||||
}
|
||||
return backup(art_method, quick_code);
|
||||
|
|
|
|||
Loading…
Reference in New Issue