mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-09 22:56:35 +00:00
Add missing userToSecure args in smcComputeCmac
This commit is contained in:
parent
0340085c67
commit
9b54bc536b
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ uint32_t user_compute_cmac(smc_args_t *args) {
|
||||||
return 2;
|
return 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (upage_init(&page_ref, (void *)user_address) == 0 || user_copy_to_secure() == 0) {
|
if (upage_init(&page_ref, (void *)user_address) == 0 || user_copy_to_secure(&page_ref, user_data, user_address, size) == 0) {
|
||||||
return 2;
|
return 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue