mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-15 21:59:41 -04:00
BUG/MINOR: spoe: Fix memory leak if failing to allocate memory
Technically harmless, but it annoys clang analyzer.
This bug was introduced in 336d3ef0e7.
This fix should be backported to HAProxy 1.9+.
This commit is contained in:
parent
2c9e274f45
commit
b298613072
1 changed files with 1 additions and 0 deletions
|
|
@ -3751,6 +3751,7 @@ cfg_parse_spoe_agent(const char *file, int linenum, char **args, int kwm)
|
|||
goto out;
|
||||
}
|
||||
if ((vph->name = strdup(args[cur_arg])) == NULL) {
|
||||
free(vph);
|
||||
ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
|
||||
err_code |= ERR_ALERT | ERR_ABORT;
|
||||
goto out;
|
||||
|
|
|
|||
Loading…
Reference in a new issue