commit | 53eb6aecce86cd954f74050f949785d593a0b0e4 | [log] [tgz] |
---|---|---|
author | Aurelien DARRAGON <adarragon@haproxy.com> | Wed Feb 22 09:26:41 2023 +0100 |
committer | Christopher Faulet <cfaulet@haproxy.com> | Wed Apr 05 08:58:17 2023 +0200 |
tree | eb7b3ac6b2c6a4fccd0082967f588073f193b408 | |
parent | 21f7ebbfcd9709cc193d4c45f8012b518014b174 [diff] |
BUG/MINOR: event_hdl: fix rid storage type rid is stored as a uint32_t within struct server, but it was stored as a signed int within the server event data struct. Switching from signed int to uint32_t in event_hdl_cb_data_server struct to make sure it won't overflow. If 129ecf441 ("MINOR: server/event_hdl: add support for SERVER_ADD and SERVER_DEL events") is being backported, then this commit should be backported with it.