From: Vasily Averin Date: Thu, 15 Nov 2018 10:18:18 +0000 (+0300) Subject: dlm: possible memory leak on error path in create_lkb() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=23851e978f31eda8b2d01bd410d3026659ca06c7;p=linux.git 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 Signed-off-by: David Teigland --- diff --git a/fs/dlm/lock.c b/fs/dlm/lock.c index cc91963683ded..2cb125cc21c98 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; }