From aa11e240def809e92d42dcfd0ac934606967583b Mon Sep 17 00:00:00 2001 From: Sander Vrijders Date: Wed, 26 Oct 2016 16:59:36 +0200 Subject: irmd: Fix wrong unlocks This fixes 2 wrong unlocks in the bind API method. --- src/irmd/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/irmd/main.c b/src/irmd/main.c index 740472b9..1ac989de 100644 --- a/src/irmd/main.c +++ b/src/irmd/main.c @@ -590,14 +590,14 @@ static int bind_api(pid_t api, e = api_table_get(&irmd->api_table, api); if (e == NULL) { LOG_ERR("AP-I %d does not exist.", api); - pthread_rwlock_wrlock(&irmd->reg_lock); + pthread_rwlock_unlock(&irmd->reg_lock); pthread_rwlock_unlock(&irmd->state_lock); return -1; } name_dup = strdup(name); if (name_dup == NULL) { - pthread_rwlock_wrlock(&irmd->reg_lock); + pthread_rwlock_unlock(&irmd->reg_lock); pthread_rwlock_unlock(&irmd->state_lock); return -ENOMEM; } -- cgit v1.2.3