diff options
author | Vasily Averin <vvs@virtuozzo.com> | 2018-11-15 13:18:18 +0300 |
---|---|---|
committer | David Teigland <teigland@redhat.com> | 2018-11-15 09:57:22 -0600 |
commit | 23851e978f31eda8b2d01bd410d3026659ca06c7 (patch) | |
tree | 2253374441b316d63d4aae4452dfa5010dc6e76c /fs/dlm | |
parent | b982896cdb6e6a6b89d86dfb39df489d9df51e14 (diff) |
dlm: possible memory leak on error path in create_lkb()
Fixes 3d6aa675fff9 ("dlm: keep lkbs in idr")
Cc: stable@kernel.org # 3.1
Signed-off-by: Vasily Averin <vvs@virtuozzo.com>
Signed-off-by: David Teigland <teigland@redhat.com>
Diffstat (limited to 'fs/dlm')
-rw-r--r-- | fs/dlm/lock.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/dlm/lock.c b/fs/dlm/lock.c index cc91963683de..2cb125cc21c9 100644 --- a/fs/dlm/lock.c +++ b/fs/dlm/lock.c @@ -1209,6 +1209,7 @@ static int create_lkb(struct dlm_ls *ls, struct dlm_lkb **lkb_ret) if (rv < 0) { log_error(ls, "create_lkb idr error %d", rv); + dlm_free_lkb(lkb); return rv; } |