Commit c8f76c37 authored by Liviu Dudau's avatar Liviu Dudau
Browse files

drm/komeda: return early if drm_universal_plane_init() fails.



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: default avatarSteven Price <steven.price@arm.com>
Reviewed-by: default avatarSteven Price <steven.price@arm.com>
Signed-off-by: default avatarLiviu Dudau <liviu.dudau@arm.com>
Link: https://lore.kernel.org/dri-devel/20211203100946.2706922-1-liviu.dudau@arm.com
parent f5e284bb
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -270,8 +270,10 @@ static int komeda_plane_add(struct komeda_kms_dev *kms,

	komeda_put_fourcc_list(formats);

	if (err)
		goto cleanup;
	if (err) {
		kfree(kplane);
		return err;
	}

	drm_plane_helper_add(plane, &komeda_plane_helper_funcs);