|
|
45721d |
diff -up rsyslog-8.37.0/plugins/imptcp/imptcp.c.orig rsyslog-8.37.0/plugins/imptcp/imptcp.c
|
|
|
45721d |
--- rsyslog-8.37.0/plugins/imptcp/imptcp.c.orig 2022-05-09 12:22:59.050623119 +0200
|
|
|
45721d |
+++ rsyslog-8.37.0/plugins/imptcp/imptcp.c 2022-05-09 12:34:39.979854853 +0200
|
|
|
45721d |
@@ -1032,7 +1032,10 @@ processDataRcvd(ptcpsess_t *const __rest
|
|
|
45721d |
if(pThis->iOctetsRemain <= 200000000) {
|
|
|
45721d |
pThis->iOctetsRemain = pThis->iOctetsRemain * 10 + c - '0';
|
|
|
45721d |
}
|
|
|
45721d |
- *(pThis->pMsg + pThis->iMsg++) = c;
|
|
|
45721d |
+ // *(pThis->pMsg + pThis->iMsg++) = c;
|
|
|
45721d |
+ if(pThis->iMsg < iMaxLine) {
|
|
|
45721d |
+ *(pThis->pMsg + pThis->iMsg++) = c;
|
|
|
45721d |
+ }
|
|
|
45721d |
} else { /* done with the octet count, so this must be the SP terminator */
|
|
|
45721d |
DBGPRINTF("TCP Message with octet-counter, size %d.\n", pThis->iOctetsRemain);
|
|
|
45721d |
prop.GetString(pThis->peerName, &propPeerName, &lenPeerName);
|
|
|
45721d |
diff -up rsyslog-8.37.0/runtime/tcps_sess.c.orig rsyslog-8.37.0/runtime/tcps_sess.c
|
|
|
45721d |
--- rsyslog-8.37.0/runtime/tcps_sess.c.orig 2022-05-09 12:23:12.789627661 +0200
|
|
|
45721d |
+++ rsyslog-8.37.0/runtime/tcps_sess.c 2022-05-09 12:36:51.426898549 +0200
|
|
|
45721d |
@@ -389,7 +389,10 @@ processDataRcvd(tcps_sess_t *pThis,
|
|
|
45721d |
if(pThis->iOctetsRemain <= 200000000) {
|
|
|
45721d |
pThis->iOctetsRemain = pThis->iOctetsRemain * 10 + c - '0';
|
|
|
45721d |
}
|
|
|
45721d |
- *(pThis->pMsg + pThis->iMsg++) = c;
|
|
|
45721d |
+ // *(pThis->pMsg + pThis->iMsg++) = c;
|
|
|
45721d |
+ if(pThis->iMsg < iMaxLine) {
|
|
|
45721d |
+ *(pThis->pMsg + pThis->iMsg++) = c;
|
|
|
45721d |
+ }
|
|
|
45721d |
} else { /* done with the octet count, so this must be the SP terminator */
|
|
|
45721d |
DBGPRINTF("TCP Message with octet-counter, size %d.\n", pThis->iOctetsRemain);
|
|
|
45721d |
prop.GetString(pThis->fromHost, &propPeerName, &lenPeerName);
|