mirror of
https://github.com/torvalds/linux.git
synced 2026-06-06 05:27:07 +02:00
drm/komeda: return early if drm_universal_plane_init() fails.
[ Upstream commit c8f76c37cc ]
If drm_universal_plane_init() fails early we jump to the common cleanup code
that calls komeda_plane_destroy() which in turn could access the uninitalised
drm_plane and crash. Return early if an error is detected without going through
the common code.
Reported-by: Steven Price <steven.price@arm.com>
Reviewed-by: Steven Price <steven.price@arm.com>
Signed-off-by: Liviu Dudau <liviu.dudau@arm.com>
Link: https://lore.kernel.org/dri-devel/20211203100946.2706922-1-liviu.dudau@arm.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
cd97a481ea
commit
c977d63b8c
|
|
@ -274,8 +274,10 @@ static int komeda_plane_add(struct komeda_kms_dev *kms,
|
||||||
|
|
||||||
komeda_put_fourcc_list(formats);
|
komeda_put_fourcc_list(formats);
|
||||||
|
|
||||||
if (err)
|
if (err) {
|
||||||
goto cleanup;
|
kfree(kplane);
|
||||||
|
return err;
|
||||||
|
}
|
||||||
|
|
||||||
drm_plane_helper_add(plane, &komeda_plane_helper_funcs);
|
drm_plane_helper_add(plane, &komeda_plane_helper_funcs);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user