summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVijay Bellur <vbellur@redhat.com>2018-11-06 10:12:10 -0800
committerShyamsundar Ranganathan <srangana@redhat.com>2018-11-09 14:02:19 +0000
commit7136414bcc0426270f1df8720018af1b53fd228a (patch)
tree2340d17298c227c4b18a757bcac8539e0bbaf51a
parentc87a458998717e951094744a56247a8ec6c48b4b (diff)
features/locks:Use pthread_mutex_unlock() instead of pthread_mutex_lock()
Fixes CID 1396581 Change-Id: Ic04091b5783a75d8e1e605a9c1c28b77fea048d3 updates: bz#1647962 Signed-off-by: Vijay Bellur <vbellur@redhat.com> Signed-off-by: Susant Palai <spalai@redhat.com>
-rw-r--r--xlators/features/locks/src/posix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/features/locks/src/posix.c b/xlators/features/locks/src/posix.c
index 28c879822ba..6b67f7ece94 100644
--- a/xlators/features/locks/src/posix.c
+++ b/xlators/features/locks/src/posix.c
@@ -2940,7 +2940,7 @@ pl_metalk(call_frame_t *frame, xlator_t *this, inode_t *inode)
ret = -1;
}
}
- pthread_mutex_lock(&pl_inode->mutex);
+ pthread_mutex_unlock(&pl_inode->mutex);
if (ret == -1) {
goto out;