diff options
author | Dave Airlie <airlied@redhat.com> | 2019-12-09 10:13:13 +0300 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2019-12-09 10:13:19 +0300 |
commit | 781d5eb4b4a63df352d6f222c85f2628988aba87 (patch) | |
tree | a1da0cf8a00bb1fd31fc0700c292ed3eb7f2ee7f /drivers/dma-buf/sync_file.c | |
parent | e42617b825f8073569da76dc4510bfa019b1c35a (diff) | |
parent | 6645d42d79d33e8a9fe262660a75d5f4556bbea9 (diff) | |
download | linux-781d5eb4b4a63df352d6f222c85f2628988aba87.tar.xz |
Merge tag 'drm-misc-fixes-2019-11-25' of git://anongit.freedesktop.org/drm/drm-misc into drm-fixes
- A fix for a memory leak in the dma-buf support
- One in mcde DSI support that leads to a pointer dereference
Signed-off-by: Dave Airlie <airlied@redhat.com>
From: Maxime Ripard <maxime@cerno.tech>
Link: https://patchwork.freedesktop.org/patch/msgid/20191125094336.GA14723@gilmour.lan
Diffstat (limited to 'drivers/dma-buf/sync_file.c')
-rw-r--r-- | drivers/dma-buf/sync_file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma-buf/sync_file.c b/drivers/dma-buf/sync_file.c index 76fb072c22dc..5a5a1da01a00 100644 --- 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; |