From 52b411b0388cecfeff36a4098305453b4aa239da Mon Sep 17 00:00:00 2001 From: dimitri staessens Date: Thu, 27 Oct 2016 16:35:22 +0200 Subject: irmd: Fix check in irm_flow --- src/irmd/irm_flow.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/irmd/irm_flow.c b/src/irmd/irm_flow.c index ac854832..a228db06 100644 --- a/src/irmd/irm_flow.c +++ b/src/irmd/irm_flow.c @@ -130,7 +130,7 @@ enum flow_state irm_flow_wait_state(struct irm_flow * f, enum flow_state state) while (!(f->state == state || f->state == FLOW_DESTROY)) pthread_cond_wait(&f->state_cond, &f->state_lock); - if (state == FLOW_DESTROY) { + if (f->state == FLOW_DESTROY) { f->state = FLOW_NULL; pthread_cond_broadcast(&f->state_cond); } -- cgit v1.2.3