From: Alan T. DeKok Date: Tue, 16 Jan 2018 19:48:00 +0000 (-0500) Subject: free timers when freeing entries in the rbtree X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7baa4e46ff9750e131795c133760b7076e70b404;p=thirdparty%2Ffreeradius-server.git free timers when freeing entries in the rbtree --- diff --git a/src/modules/proto_radius/track.c b/src/modules/proto_radius/track.c index eb681afc3a6..cfd3f356748 100644 --- a/src/modules/proto_radius/track.c +++ b/src/modules/proto_radius/track.c @@ -68,6 +68,7 @@ static void entry_free(void *data) { fr_tracking_entry_t *entry = data; + if (entry->ev) talloc_free(entry->ev); talloc_free(entry); }