diff options
author | PrakashH <pbhandar@techmahindra.com> | 2019-02-22 21:17:51 +0530 |
---|---|---|
committer | PrakashH <pbhandar@techmahindra.com> | 2019-02-22 21:17:51 +0530 |
commit | 1b81e8f0b51576f761aa8e3329285bfb61e6dd79 (patch) | |
tree | 8fc29250cedd399b073defaa3ff48aefbbd2817f /vnfs/VES5.0/evel/evel-library | |
parent | 65a29e481524fb089f17f213f85b3b5c71e5cc61 (diff) |
VES5.4.1 EVEL Library enhancements
Fix Batch memory leak Issue-ID: CERT-17
Change-Id: Ieaf86e0ef4bc84d4a5162834709e8428dc05cd8a
Signed-off-by: PrakashH <pbhandar@techmahindra.com>
Diffstat (limited to 'vnfs/VES5.0/evel/evel-library')
-rw-r--r-- | vnfs/VES5.0/evel/evel-library/code/evel_library/evel_batch.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vnfs/VES5.0/evel/evel-library/code/evel_library/evel_batch.c b/vnfs/VES5.0/evel/evel-library/code/evel_library/evel_batch.c index a33e5e12..d1877dd8 100644 --- a/vnfs/VES5.0/evel/evel-library/code/evel_library/evel_batch.c +++ b/vnfs/VES5.0/evel/evel-library/code/evel_library/evel_batch.c @@ -145,6 +145,7 @@ void evel_free_batch(EVENT_HEADER * event) evel_free_event(batch_field); batch_field = dlist_pop_last(&event->batch_events); } + evel_free_header(event); EVEL_EXIT(); } |