summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/core/hle/kernel/hle_ipc.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/hle/kernel/hle_ipc.cpp b/src/core/hle/kernel/hle_ipc.cpp
index 2ccc242f6..ac62a0d5a 100644
--- a/src/core/hle/kernel/hle_ipc.cpp
+++ b/src/core/hle/kernel/hle_ipc.cpp
@@ -104,8 +104,9 @@ void HLERequestContext::ParseCommandBuffer(u32_le* src_cmdbuf, bool incoming) {
104 104
105 data_payload_offset = rp.GetCurrentOffset(); 105 data_payload_offset = rp.GetCurrentOffset();
106 106
107 if (domain_message_header && domain_message_header->command == 107 if (domain_message_header &&
108 IPC::DomainMessageHeader::CommandType::CloseVirtualHandle) { 108 domain_message_header->command ==
109 IPC::DomainMessageHeader::CommandType::CloseVirtualHandle) {
109 // CloseVirtualHandle command does not have SFC* or any data 110 // CloseVirtualHandle command does not have SFC* or any data
110 return; 111 return;
111 } 112 }