CLEANUP: fcgi-app; Remove useless assignment to NULL

When the fcgi configuration is checked and fcgi rules are created, a useless
assignment to NULL is reported by Covertiy. Let's remove it.

This patch should fix the coverity report #2161.
This commit is contained in:
Christopher Faulet 2023-05-17 09:40:14 +02:00
parent c7b9308f20
commit c8a7bb16b7
1 changed files with 0 additions and 1 deletions

View File

@ -270,7 +270,6 @@ static int fcgi_flt_check(struct proxy *px, struct flt_conf *fconf)
LIST_APPEND(&fcgi_conf->param_rules, &rule->list); LIST_APPEND(&fcgi_conf->param_rules, &rule->list);
else /* FCGI_RULE_PASS_HDR/FCGI_RULE_HIDE_HDR */ else /* FCGI_RULE_PASS_HDR/FCGI_RULE_HIDE_HDR */
LIST_APPEND(&fcgi_conf->hdr_rules, &rule->list); LIST_APPEND(&fcgi_conf->hdr_rules, &rule->list);
rule = NULL;
} }
return 0; return 0;