mirror of
https://github.com/tmux/tmux.git
synced 2026-02-13 09:19:17 +00:00
Fix wrong TAILQ member in input_cancel_requests from Conor Taylor in
GitHub issue 4848.
This commit is contained in:
2
input.c
2
input.c
@@ -3424,7 +3424,7 @@ input_cancel_requests(struct client *c)
|
|||||||
{
|
{
|
||||||
struct input_request *ir, *ir1;
|
struct input_request *ir, *ir1;
|
||||||
|
|
||||||
TAILQ_FOREACH_SAFE(ir, &c->input_requests, entry, ir1)
|
TAILQ_FOREACH_SAFE(ir, &c->input_requests, centry, ir1)
|
||||||
input_free_request(ir);
|
input_free_request(ir);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user