Fix #1928. Add null-terminator between strings.

This commit is contained in:
srcejon 2023-12-14 12:13:51 +00:00
parent a8e50b77c8
commit 84848124fd
1 changed files with 5 additions and 0 deletions

View File

@ -180,10 +180,15 @@ bool PagerDemod::handleMessage(const Message& cmd)
{
QByteArray message;
message.append(report.getDateTime().toString().toLatin1());
message.append('\0');
message.append(QString::number(report.getAddress()).toLatin1());
message.append('\0');
message.append(QString::number(report.getFunctionBits()).toLatin1());
message.append('\0');
message.append(report.getAlphaMessage().toLatin1());
message.append('\0');
message.append(report.getNumericMessage().toLatin1());
message.append('\0');
m_udpSocket.writeDatagram(message.data(), message.size(),
QHostAddress(m_settings.m_udpAddress), m_settings.m_udpPort);
}