commit | 361935aa1e327d2249453eab0b8f0300683f47b2 | [log] [tgz] |
---|---|---|
author | Christopher Faulet <cfaulet@haproxy.com> | Fri Sep 13 09:50:15 2019 +0200 |
committer | Christopher Faulet <cfaulet@haproxy.com> | Fri Sep 13 10:08:44 2019 +0200 |
tree | 9eca67caaeff712714039366d531f471cba74d40 | |
parent | 3e395632bf0892696c5a94944fb27f00908c228e [diff] |
BUG/MINOR: acl: Fix memory leaks when an ACL expression is parsed This only happens during the configuration parsing. First leak is the string representing the last converter parsed, if any. The second one is on the error path, when the allocation of the ACL expression failed. In this case, the sample was not released. This patch fixes the issue #256. It must be backported to all stable versions.