commit | 256d581fbdec0f2814835b5e5cf2825f226afc0e | [log] [tgz] |
---|---|---|
author | Aurelien DARRAGON <adarragon@haproxy.com> | Thu May 11 18:57:23 2023 +0200 |
committer | Christopher Faulet <cfaulet@haproxy.com> | Fri May 12 09:45:30 2023 +0200 |
tree | 275be007946bcb0fa6bebc8a867a8600e210f870 | |
parent | d4dba38ab101eee4cbd0c8d8aa21181825ef6472 [diff] |
BUG/MINOR: log: fix memory error handling in parse_logsrv() A check was missing in parse_logsrv() to make sure that malloc-dependent variable is checked for non-NULL before using it. If malloc fails, the function raises an error and stops, like it's already done at a few other places within the function. This partially fixes GH #2130. It should be backported to every stable versions.