From: Alan T. DeKok Date: Fri, 24 Oct 2025 19:31:48 +0000 (-0400) Subject: explicitly initialize same field used by the code X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=43db94630d44d2795df89a186ce2f5012695f400;p=thirdparty%2Ffreeradius-server.git explicitly initialize same field used by the code --- diff --git a/src/lib/unlang/call_env.h b/src/lib/unlang/call_env.h index 83cb68e64e..a7f6faff81 100644 --- a/src/lib/unlang/call_env.h +++ b/src/lib/unlang/call_env.h @@ -233,7 +233,7 @@ struct call_env_ctx_s { ///< module_method_binding_t. }; -#define CALL_ENV_TERMINATOR { NULL } +#define CALL_ENV_TERMINATOR { .name = NULL } /** Helper macro for populating the size/type fields of a #call_env_method_t from the output structure type */