From: Dave Barach Date: Fri, 17 Jun 2016 00:14:43 +0000 (-0400) Subject: vpp-83: fix double-unlock X-Git-Tag: v16.09-rc1~279 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=b84ccc614d2032b5ddee9ab145d82d2eb70723e8;p=vpp.git vpp-83: fix double-unlock Change-Id: I0b75b4f9bef62aba69e9cc163924f6b985a35455 Signed-off-by: Dave Barach --- diff --git a/vlib-api/vlibmemory/memory_shared.c b/vlib-api/vlibmemory/memory_shared.c index 1684acfd622..e4f5dd0d525 100644 --- a/vlib-api/vlibmemory/memory_shared.c +++ b/vlib-api/vlibmemory/memory_shared.c @@ -288,8 +288,9 @@ int vl_map_shmem (char *region_name, int is_vlib) pthread_mutex_lock (&root_rp->mutex); svm_client_scan_this_region_nolock (root_rp); pthread_mutex_unlock (&root_rp->mutex); - } - pthread_mutex_unlock (&vlib_rp->mutex); + } else { + pthread_mutex_unlock (&vlib_rp->mutex); + } am->vlib_rp = vlib_rp; vec_add1(am->mapped_shmem_regions, vlib_rp); return 0;