From: James Jones Date: Mon, 15 May 2023 15:46:08 +0000 (-0500) Subject: Get rid of gratuitous assignment of NULL to uri_vb (#4993) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a292072fbd9112b747c2bc4f2ef2703fb4e8f216;p=thirdparty%2Ffreeradius-server.git Get rid of gratuitous assignment of NULL to uri_vb (#4993) The next use is an assignment, so there's no point. --- diff --git a/src/modules/rlm_rest/rlm_rest.c b/src/modules/rlm_rest/rlm_rest.c index 38a6dde6e95..35918e42c01 100644 --- a/src/modules/rlm_rest/rlm_rest.c +++ b/src/modules/rlm_rest/rlm_rest.c @@ -453,7 +453,6 @@ static xlat_action_t rest_xlat(UNUSED TALLOC_CTX *ctx, UNUSED fr_dcursor_t *out, * Move to next argument */ in_vb = fr_value_box_list_pop_head(in); - uri_vb = NULL; } else { section->method = REST_HTTP_METHOD_GET; }