From: Alan T. DeKok Date: Sat, 11 Dec 2021 15:46:41 +0000 (-0500) Subject: shut up clang analyzer X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8d9181d919c72a68ee856255cb3f26785a08bf57;p=thirdparty%2Ffreeradius-server.git shut up clang analyzer --- diff --git a/src/lib/unlang/edit.c b/src/lib/unlang/edit.c index 35e0927770b..bd0f3cd6832 100644 --- a/src/lib/unlang/edit.c +++ b/src/lib/unlang/edit.c @@ -63,6 +63,10 @@ typedef struct { edit_result_t rhs; //!< RHS child entries } unlang_frame_state_edit_t; +static int templatize_lhs(TALLOC_CTX *ctx, edit_result_t *out, request_t *request) CC_HINT(nonnull); +static int templatize_rhs(TALLOC_CTX *ctx, edit_result_t *out, fr_pair_t const *lhs, request_t *request) CC_HINT(nonnull); +static int apply_edits(request_t *request, unlang_frame_state_edit_t *state, map_t const *map) CC_HINT(nonnull); + /* * Convert a value-box list to a LHS #tmpl_t */