commit | 175aa0623284f9ee247bd301a4bbb441013dcf9a | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Tue Oct 11 15:13:46 2022 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Wed Oct 12 14:19:05 2022 +0200 |
tree | 4cf9847b2bde9cd83e940727cbf590d42b56897a | |
parent | d2d3fd9b5e7cce174dbb225819855174e2e03c76 [diff] |
MEDIUM: stick-table: free newly allocated stkess if it couldn't be inserted In __stktable_get_entry() now we're planning for the possibility that the call to __stktable_store() doesn't add the newly allocated entry and instead finds a previously inserted one. At the moment this doesn't exist because the lookup + insert passes are made under the same lock. But it will soon change.