Fix memcpy overflow, as src and dest are 32 bytes long, only 31 bytes has to be copied, not 32, since an offset is applied to src.

This commit is contained in:
Daniel Caujolle-Bert
2023-08-10 08:08:06 +02:00
parent de8f991f5a
commit 2c0f08e2a6

View File

@@ -98,7 +98,7 @@ bool CDMRTA::decodeTA()
case 1U: // ISO 8 bit
case 2U: // UTF8
::memcpy(m_ta, m_buf + 1U, sizeof(m_ta));
::memcpy(m_ta, m_buf + 1U, sizeof(m_ta) - 1);
break;
case 3U: { // UTF16 poor man's conversion