haproxy/include
Olivier Houchard f40f5401b9 BUG/MEDIUM: mt_lists: Avoid el->prev = el->next = el
Avoid setting both el->prev and el->next on the same line.
The goal is to set both el->prev and el->next to el, but a naive
compiler, such as when we're using -O0, will set el->next first, then
will set el->prev to the value of el->next, but if we're unlucky,
el->next will have been set to something else by another thread.
So explicitely set both to what we want.

This should be backported up to 2.8.
2025-10-23 14:43:51 +02:00
..
haproxy BUG/MAJOR: stats-file: ensure shm_stats_file_object struct mapping consistency 2025-10-22 20:52:22 +02:00
import BUG/MEDIUM: mt_lists: Avoid el->prev = el->next = el 2025-10-23 14:43:51 +02:00
make BUILD: makefile: add a qinfo macro to pass info in quiet mode 2025-01-08 11:26:05 +01:00