Re: [dpdk-dev] [PATCH 5/5] telemetry: fix buffer overrun if max bytes read

2020-05-18 Thread Laatz, Kevin
On 12/05/2020 16:29, Ciara Power wrote: If 1024 bytes were received over the socket, this caused buffer_recvf[bytes] to overrun the array. The size of the buffer - 1 is now passed to the read function. Coverity issue: 358442 Fixes: b80fe1805eee ("telemetry: introduce backward compatibility") Cc:

[dpdk-dev] [PATCH 5/5] telemetry: fix buffer overrun if max bytes read

2020-05-12 Thread Ciara Power
If 1024 bytes were received over the socket, this caused buffer_recvf[bytes] to overrun the array. The size of the buffer - 1 is now passed to the read function. Coverity issue: 358442 Fixes: b80fe1805eee ("telemetry: introduce backward compatibility") Cc: ciara.po...@intel.com Signed-off-by: Cia