diff options
| author | Xavier Hernandez <jahernan@redhat.com> | 2017-11-20 10:51:09 +0100 |
|---|---|---|
| committer | Shyamsundar Ranganathan <srangana@redhat.com> | 2017-11-27 18:12:28 +0000 |
| commit | ce324cb755e82f520acc36caad8eab4fbcdd3a6f (patch) | |
| tree | 5ef44b81f66466a7110ab9fd3cee79aa22b7e69d /xlators/features/locks/src/posix.c | |
| parent | cccf80cade09efca5f5e56a8e971251d6eb5adfe (diff) | |
features/locks: Fix memory leaks
Backport of:
> BUG: 1515161
Change-Id: Ic1d2e17a7d14389b6734d1b88bd28c0a2907bbd6
BUG: 1517682
Signed-off-by: Xavier Hernandez <jahernan@redhat.com>
Diffstat (limited to 'xlators/features/locks/src/posix.c')
| -rw-r--r-- | xlators/features/locks/src/posix.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/xlators/features/locks/src/posix.c b/xlators/features/locks/src/posix.c index 931b9aeb6c5..a2e47fc8ef4 100644 --- a/xlators/features/locks/src/posix.c +++ b/xlators/features/locks/src/posix.c @@ -2475,6 +2475,7 @@ pl_forget (xlator_t *this, list) { list_del (&rw_req->list); + call_stub_destroy(rw_req->stub); GF_FREE (rw_req); } } @@ -2558,6 +2559,8 @@ pl_forget (xlator_t *this, } + pthread_mutex_destroy(&pl_inode->mutex); + GF_FREE (pl_inode); return 0; |
