projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
08302c3
)
drm/vc4: Fix NULL deref in HDMI init error path
author
Eric Anholt
<eric@anholt.net>
Mon, 4 Apr 2016 21:25:59 +0000
(14:25 -0700)
committer
Eric Anholt
<eric@anholt.net>
Thu, 14 Apr 2016 19:23:11 +0000
(12:23 -0700)
If you make it here other than through err_destroy_encoder, vc4->hdmi
is still NULL.
Signed-off-by: Eric Anholt <eric@anholt.net>
drivers/gpu/drm/vc4/vc4_hdmi.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/vc4/vc4_hdmi.c
b/drivers/gpu/drm/vc4/vc4_hdmi.c
index
d8b8649
..
fd2644d
100644
(file)
--- a/
drivers/gpu/drm/vc4/vc4_hdmi.c
+++ b/
drivers/gpu/drm/vc4/vc4_hdmi.c
@@
-573,7
+573,7
@@
err_unprepare_hsm:
err_unprepare_pix:
clk_disable_unprepare(hdmi->pixel_clock);
err_put_i2c:
- put_device(&
vc4->
hdmi->ddc->dev);
+ put_device(&hdmi->ddc->dev);
return ret;
}