From: Arran Cudbard-Bell Date: Sun, 23 Feb 2020 21:22:45 +0000 (-0500) Subject: rlm_radius doesn't need to cache el, it has no timers or I/O events X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9b100305df85e86ccc7b807bb442902086bfe94b;p=thirdparty%2Ffreeradius-server.git rlm_radius doesn't need to cache el, it has no timers or I/O events --- diff --git a/src/modules/rlm_radius/rlm_radius.c b/src/modules/rlm_radius/rlm_radius.c index 8462fa2e2ad..bde424d6907 100644 --- a/src/modules/rlm_radius/rlm_radius.c +++ b/src/modules/rlm_radius/rlm_radius.c @@ -547,7 +547,6 @@ static int mod_thread_instantiate(UNUSED CONF_SECTION const *cs, void *instance, (void) talloc_set_type(t, rlm_radius_thread_t); t->inst = instance; - t->el = el; /* * Allocate thread-specific data. The connections should diff --git a/src/modules/rlm_radius/rlm_radius.h b/src/modules/rlm_radius/rlm_radius.h index a9c1f47c3e1..0e5df995d26 100644 --- a/src/modules/rlm_radius/rlm_radius.h +++ b/src/modules/rlm_radius/rlm_radius.h @@ -41,8 +41,6 @@ typedef struct rlm_radius_io_s rlm_radius_io_t; */ typedef struct { rlm_radius_t const *inst; //!< Instance of the module. - fr_event_list_t *el; //!< This thread's event list. - void *io_thread; //!< thread context for the IO submodule } rlm_radius_thread_t;