projects
/
GitHub
/
LineageOS
/
G12
/
android_kernel_amlogic_linux-4.9.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5dbe8eb
)
dlm: possible memory leak on error path in create_lkb()
author
Vasily Averin
<vvs@virtuozzo.com>
Thu, 15 Nov 2018 10:18:18 +0000
(13:18 +0300)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Sun, 13 Jan 2019 09:03:52 +0000
(10:03 +0100)
commit
23851e978f31eda8b2d01bd410d3026659ca06c7
upstream.
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>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/dlm/lock.c
patch
|
blob
|
blame
|
history
diff --git
a/fs/dlm/lock.c
b/fs/dlm/lock.c
index 35502d4046f573fac4909cceec1117ef033338e6..1d404c832e33091b4ab8376b81da3d2ef8389c4c 100644
(file)
--- a/
fs/dlm/lock.c
+++ b/
fs/dlm/lock.c
@@
-1210,6
+1210,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;
}