mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-02-10 18:55:04 +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…
Add table
Reference in a new issue