mirror of
https://github.com/haproxy/haproxy.git
synced 2026-03-07 07:44:15 -05:00
BUG/MINOR: fix unterminated ACL array in compression
Recent commit 727db8b4 was lacking a NULL ACL descriptor to terminate
the array, causing a random behaviour upon startup. No backport is needed.
This commit is contained in:
parent
50bcecc11d
commit
7f6fa69221
1 changed files with 1 additions and 0 deletions
|
|
@ -637,6 +637,7 @@ smp_fetch_res_comp_algo(struct proxy *px, struct session *l4, void *l7, unsigned
|
|||
/* Note: must not be declared <const> as its list will be overwritten */
|
||||
static struct acl_kw_list acl_kws = {{ },{
|
||||
{ "res.comp", NULL, acl_parse_nothing, acl_match_nothing },
|
||||
{ /* END */ },
|
||||
}};
|
||||
|
||||
/* Note: must not be declared <const> as its list will be overwritten */
|
||||
|
|
|
|||
Loading…
Reference in a new issue