mirror of
https://github.com/haproxy/haproxy.git
synced 2026-02-20 00:10:41 -05:00
BUG/MINOR: ssl: One free session in cache remains unused.
This commit is contained in:
parent
5f51e1ad81
commit
78617e51fd
1 changed files with 1 additions and 1 deletions
|
|
@ -173,7 +173,7 @@ static inline void _shared_context_unlock(void)
|
|||
shctx->active.n = s;
|
||||
|
||||
|
||||
#define shsess_get_next() (shctx->free.p == shctx->free.n) ? \
|
||||
#define shsess_get_next() (shctx->free.p == &shctx->free) ? \
|
||||
shctx->active.p : shctx->free.p;
|
||||
|
||||
/* Tree Macros */
|
||||
|
|
|
|||
Loading…
Reference in a new issue