projects
/
platform
/
kernel
/
linux-starfive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c131280
)
dma-buf: Fix memory leak in sync_file_merge()
author
Navid Emamdoost
<navid.emamdoost@gmail.com>
Fri, 22 Nov 2019 22:09:55 +0000
(16:09 -0600)
committer
Daniel Vetter
<daniel.vetter@ffwll.ch>
Mon, 25 Nov 2019 09:21:33 +0000
(10:21 +0100)
In the implementation of sync_file_merge() the allocated sync_file is
leaked if number of fences overflows. Release sync_file by goto err.
Fixes:
a02b9dc90d84
("dma-buf/sync_file: refactor fence storage in struct sync_file")
Signed-off-by: Navid Emamdoost <navid.emamdoost@gmail.com>
Cc: stable@vger.kernel.org
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link:
https://patchwork.freedesktop.org/patch/msgid/20191122220957.30427-1-navid.emamdoost@gmail.com
drivers/dma-buf/sync_file.c
patch
|
blob
|
history
diff --git
a/drivers/dma-buf/sync_file.c
b/drivers/dma-buf/sync_file.c
index
25c5c07
..
91185db
100644
(file)
--- a/
drivers/dma-buf/sync_file.c
+++ b/
drivers/dma-buf/sync_file.c
@@
-221,7
+221,7
@@
static struct sync_file *sync_file_merge(const char *name, struct sync_file *a,
a_fences = get_fences(a, &a_num_fences);
b_fences = get_fences(b, &b_num_fences);
if (a_num_fences > INT_MAX - b_num_fences)
-
return NULL
;
+
goto err
;
num_fences = a_num_fences + b_num_fences;