mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-01-31 12:13:47 +01:00
dmnt2: fix missing null-terminator for invalid command error
This commit is contained in:
parent
6145b3b72c
commit
c17ad1e0e3
@ -2061,7 +2061,7 @@ namespace ams::dmnt {
|
||||
SetReply(m_buffer, "[TODO] wait for program id 0x%lx\n", program_id);
|
||||
} else {
|
||||
SetReply(m_reply_packet, "Unknown command `%s`\n", command);
|
||||
std::memcpy(m_buffer, m_reply_packet, std::strlen(m_reply_packet));
|
||||
std::memcpy(m_buffer, m_reply_packet, std::strlen(m_reply_packet) + 1);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user