commit | 9b4a0e6bace4e6ecd523a8d303abc948ee46aefd | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Fri Feb 25 09:56:29 2022 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Fri Feb 25 11:54:30 2022 +0100 |
tree | 5dded97607773f0a4a4952fb455bad5736dd7067 | |
parent | c72d2c7e5b05b64b1188c0d34cced8ad47b62ebe [diff] |
BUG/MINOR: debug: fix get_tainted() to properly read an atomic value get_tainted() was using an atomic store from the atomic value to a local one instead of using an atomic load. In practice it has no effect given the relatively rare updates of this field and the fact that it's read only when dumping "show info" output, but better fix it. There's probably no need to backport this.