Commit e77337a7 authored by Eric Anholt's avatar Eric Anholt Committed by Greg Kroah-Hartman

drm/vc4: Fix oops when userspace hands in a bad BO.

commit 552416c1 upstream.

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: default avatarEric Anholt <eric@anholt.net>
Fixes: d5b1a78a ("drm/vc4: Add support for drawing 3D frames.")
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1153f3b7
...@@ -575,7 +575,7 @@ vc4_cl_lookup_bos(struct drm_device *dev, ...@@ -575,7 +575,7 @@ vc4_cl_lookup_bos(struct drm_device *dev,
fail: fail:
drm_free_large(handles); drm_free_large(handles);
return 0; return ret;
} }
static int static int
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment