From: Alan T. DeKok Date: Mon, 21 Aug 2017 07:15:00 +0000 (+0200) Subject: pass thread instance data, not thread structure X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=18329a8a16f1e9d2c759d6562150aa32e8f97ee5;p=thirdparty%2Ffreeradius-server.git pass thread instance data, not thread structure --- diff --git a/src/main/unlang_interpret.c b/src/main/unlang_interpret.c index 691dd5c9615..083149a8e4e 100644 --- a/src/main/unlang_interpret.c +++ b/src/main/unlang_interpret.c @@ -2036,7 +2036,7 @@ void unlang_signal(REQUEST *request, fr_state_action_t action) memcpy(&mutable, &mr->ctx, sizeof(mutable)); - mr->signal_callback(request, mr->module.module_instance->dl_inst->data, mr->thread, mutable, action); + mr->signal_callback(request, mr->module.module_instance->dl_inst->data, mr->thread->data, mutable, action); } /** Yield a request back to the interpreter from within a module