diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/irmd/main.c | 4 | 
1 files 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;          } | 
