From: Jérémie Galarneau Date: Wed, 10 Feb 2021 19:33:11 +0000 (-0500) Subject: Fix: sessiond: client: leak of trigger object on invalid client message X-Git-Tag: v2.13.0-rc1~336 X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=b5ef16855f9c69315d9530730200890dbbebad24;hp=b5ef16855f9c69315d9530730200890dbbebad24 Fix: sessiond: client: leak of trigger object on invalid client message Coverity reports: 1445927 Resource leak The system resource will not be reclaimed and reused, reducing the future availability of the resource. In receive_lttng_trigger: Leak of memory or pointers to system resources (CWE-404) lttng_trigger_create_from_payload() can return a trigger (positive return value) that doesn't match the advertised trigger size. In that case, a trigger reference was still returned and must be released. Reported-by: Coverity Scan Signed-off-by: Jérémie Galarneau Change-Id: I5afac029ddcf32dd0a01064c9dc688ed9208f278 ---