Re: [PATCH 1/4] BUG/MINOR: checks: handle a possible strdup() failure

2024-12-25 Thread Willy Tarreau
On Mon, Dec 23, 2024 at 10:08:56PM +0100, ??? wrote: > here we go. > v2 Now all merged, thank you Ilya! Willy

[ANNOUNCE] haproxy-3.2-dev2

2024-12-25 Thread Willy Tarreau
Hi, HAProxy 3.2-dev2 was released on 2024/12/25. It added 97 new commits after version 3.2-dev1. This version contains few changes and mostly addresses pending issues. It starts by bringing some fixes in a few areas (quic/bbr, stream timers, rhttp counters, SSL CLI). A notable one is the queue is

[PATCH 1/3] BUG/MINOR: pool: handle a possible strdup() failure

2024-12-25 Thread Ilia Shipitsin
This defect was found by the coccinelle script "unchecked-strdup.cocci". It can be backported to all supported branches. --- src/pool.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pool.c b/src/pool.c index f4a4af100..d653ac3c9 100644 --- a/src/pool.c +++ b/src/pool.c @@ -1373,6 +1373

[PATCH 2/3] BUG/MINOR: cfgparse-tcp: handle a possible strdup() failure

2024-12-25 Thread Ilia Shipitsin
This defect was found by the coccinelle script "unchecked-strdup.cocci". It can be backported to all supported branches. --- src/cfgparse-tcp.c | 4 1 file changed, 4 insertions(+) diff --git a/src/cfgparse-tcp.c b/src/cfgparse-tcp.c index 2f68daf1c..2c214f3d8 100644 --- a/src/cfgparse-tcp.c

[PATCH 3/3] BUG/MINOR: compression: handle a possible strdup() failure

2024-12-25 Thread Ilia Shipitsin
This defect was found by the coccinelle script "unchecked-strdup.cocci". It can be backported to all supported branches. --- src/compression.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/compression.c b/src/compression.c index a4464e09b..edf5553c1 100644 --- a/src/compression.c +++ b