1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-09-19 21:43:29 +01:00

dmnt2: fix missing null-terminator for invalid command error

This commit is contained in:
jam1garner 2021-11-02 00:10:54 -04:00 committed by SciresM
parent 6145b3b72c
commit c17ad1e0e3

View file

@ -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);
}
}