Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ofproto-dpif-ipfix: Fix severe memory leak in ipfix_send_template_msg…
…s(). This fixes a seemingly severe memory leak in ipfix_send_template_msgs(). This function was setting up a buffer with a stub, but only the first 4 or 8 bytes of the stub were actually used because the "sizeof" call used to size it was actually getting the size of a pointer. It never freed the buffer, leaking it. Additionally, after this code sent a template message, it started over from the same undersized stub, leaking another block of memory. This commit fixes both problems. Found by Coverity. Reported-at: https://scan3.coverity.com/reports.htm#v16889/p10449/fileInstanceId=14762995&defectInstanceId=4304799&mergedDefectId=180398 Signed-off-by: Ben Pfaff <[email protected]> Signed-off-by: Justin Pettit <[email protected]>
- Loading branch information