mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2025-01-08 21:47:57 +00:00
kern/ipc: fix bug in SendMessage
This commit is contained in:
parent
4ff10f3ce0
commit
c8f71007ec
1 changed files with 1 additions and 1 deletions
|
@ -844,7 +844,7 @@ namespace ams::kern {
|
|||
}
|
||||
|
||||
/* Handle any exchange buffers. */
|
||||
for (size_t i = 0; i < request->GetReceiveCount(); ++i) {
|
||||
for (size_t i = 0; i < request->GetExchangeCount(); ++i) {
|
||||
R_TRY(ProcessSendMessageReceiveMapping(dst_page_table, request->GetExchangeClientAddress(i), request->GetExchangeServerAddress(i), request->GetExchangeSize(i), request->GetExchangeMemoryState(i)));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue