diff options
author | Raghavendra Talur <rtalur@redhat.com> | 2014-02-10 17:11:03 +0530 |
---|---|---|
committer | Vijay Bellur <vbellur@redhat.com> | 2014-02-17 08:09:55 -0800 |
commit | 4b36051ce195d9ae7ec32bd614d32a023873ab29 (patch) | |
tree | c7a4237153e4a2f2ce1a605aaca251a43f2fd59b /xlators/performance | |
parent | 4a14159e82d7b736dec686a170b06e961d7aff53 (diff) |
io-cache: Unlock and then goto out in failure case.
Fix for coverity bug CID:1124625
Change-Id: I76df453a17f2af7c48a80b6fc0ccd411ab96e371
BUG: 789278
Signed-off-by: Raghavendra Talur <rtalur@redhat.com>
Reviewed-on: http://review.gluster.org/6949
Reviewed-by: Santosh Pradhan <spradhan@redhat.com>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Diffstat (limited to 'xlators/performance')
-rw-r--r-- | xlators/performance/io-cache/src/io-cache.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xlators/performance/io-cache/src/io-cache.c b/xlators/performance/io-cache/src/io-cache.c index 054d28c03bf..8febfc8fbd5 100644 --- a/xlators/performance/io-cache/src/io-cache.c +++ b/xlators/performance/io-cache/src/io-cache.c @@ -991,6 +991,7 @@ ioc_dispatch_requests (call_frame_t *frame, ioc_inode_t *ioc_inode, fd_t *fd, "out of memory"); local->op_ret = -1; local->op_errno = ENOMEM; + ioc_inode_unlock (ioc_inode); goto out; } } |