diff options
Diffstat (limited to 'radsecproxy.c')
-rw-r--r-- | radsecproxy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/radsecproxy.c b/radsecproxy.c index 954e464..725b646 100644 --- a/radsecproxy.c +++ b/radsecproxy.c @@ -1992,7 +1992,6 @@ errexit: else freeclsrvconf(conf); } - conf->servers = NULL; freeserver(server, 1); ERR_remove_state(0); return NULL; @@ -2691,6 +2690,7 @@ void freeclsrvconf(struct clsrvconf *conf) { pthread_mutex_destroy(conf->lock); free(conf->lock); } + conf->servers = NULL; /* not touching ssl_ctx, clients and servers */ free(conf); } |