summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2017-10-18 21:39:48 -0400
committerbunnei <bunneidev@gmail.com>2017-10-18 21:39:48 -0400
commit654fae29c1adec90d81b98bd02e9daae7cbe1548 (patch)
tree9b6920e19b3e93a7224064f57ad30b3f161b030b /src
parentb283cf734807e63e4bbee1a085553cb653648944 (diff)
hle_ipc: Only copy necessary fields for outgoing command buffer.
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/kernel/hle_ipc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/hle_ipc.cpp b/src/core/hle/kernel/hle_ipc.cpp
index fc05c44b4..427642cab 100644
--- a/src/core/hle/kernel/hle_ipc.cpp
+++ b/src/core/hle/kernel/hle_ipc.cpp
@@ -120,7 +120,7 @@ ResultCode HLERequestContext::WriteToOutgoingCommandBuffer(u32_le* dst_cmdbuf, P
HandleTable& dst_table) {
ParseCommandBuffer(&cmd_buf[0], false);
size_t untranslated_size = data_payload_offset + command_header->data_size;
- std::copy_n(cmd_buf.begin(), 64, dst_cmdbuf);
+ std::copy_n(cmd_buf.begin(), untranslated_size, dst_cmdbuf);
if (command_header->enable_handle_descriptor) {
size_t command_size = untranslated_size + handle_descriptor_header->num_handles_to_copy +