From 16e499159be99557dffd55a994bca3818c5d0366 Mon Sep 17 00:00:00 2001 From: dimitri staessens Date: Wed, 22 Mar 2017 08:46:25 +0100 Subject: irmd: Fix some missing locks --- src/irmd/main.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/irmd/main.c') diff --git a/src/irmd/main.c b/src/irmd/main.c index 9eb34f38..9a062cf3 100644 --- a/src/irmd/main.c +++ b/src/irmd/main.c @@ -587,6 +587,7 @@ static int bind_ap(char * ap, name_dup = strdup(name); if (name_dup == NULL) { + pthread_rwlock_unlock(&irmd->reg_lock); pthread_rwlock_unlock(&irmd->state_lock); return -ENOMEM; } @@ -995,6 +996,8 @@ static struct irm_flow * flow_accept(pid_t api, e = api_table_get(&irmd->api_table, api); if (e == NULL) { /* Can only happen if server called ap_init(NULL); */ + pthread_rwlock_unlock(&irmd->reg_lock); + pthread_rwlock_unlock(&irmd->state_lock); log_err("Unknown instance %d calling accept.", api); return NULL; } -- cgit v1.2.3