mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-27 14:43:58 +08:00
drm/vc4: Fix oops when userspace hands in a bad BO.
We'd end up NULL pointer dereferencing because we didn't take the
error path out in the parent. Fixes igt vc4_lookup_fail test.
Signed-off-by: Eric Anholt <eric@anholt.net>
Fixes: d5b1a78a77
("drm/vc4: Add support for drawing 3D frames.")
Cc: stable@vger.kernel.org
This commit is contained in:
parent
9326e6f255
commit
552416c146
@ -573,7 +573,7 @@ vc4_cl_lookup_bos(struct drm_device *dev,
|
||||
|
||||
fail:
|
||||
drm_free_large(handles);
|
||||
return 0;
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int
|
||||
|
Loading…
Reference in New Issue
Block a user