Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1371071 > unrolled thread
| Started by | Eric Anholt <eric@anholt.net> |
|---|---|
| First post | 2016-04-05 02:50 +0200 |
| Last post | 2016-04-05 02:50 +0200 |
| Articles | 1 — 1 participant |
Back to article view | Back to linux.kernel
[PATCH] drm/vc4: Fix NULL deref in HDMI init error path Eric Anholt <eric@anholt.net> - 2016-04-05 02:50 +0200
| From | Eric Anholt <eric@anholt.net> |
|---|---|
| Date | 2016-04-05 02:50 +0200 |
| Subject | [PATCH] drm/vc4: Fix NULL deref in HDMI init error path |
| Message-ID | <rknlU-32E-19@gated-at.bofh.it> |
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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/vc4/vc4_hdmi.c b/drivers/gpu/drm/vc4/vc4_hdmi.c index d8b8649..fd2644d 100644 --- 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; } -- 2.7.0
Back to top | Article view | linux.kernel
csiph-web