[PATCH] drm/edid: catch kmalloc failure in drm_edid_to_speaker_allocation
Jani Nikula
jani.nikula at linux.intel.com
Sun Sep 29 22:36:42 PDT 2013
On Sat, 28 Sep 2013, Alex Deucher <alexdeucher at gmail.com> wrote:
> Return -ENOMEM if the allocation fails.
>
> Signed-off-by: Alex Deucher <alexander.deucher at amd.com>
Reviewed-by: Jani Nikula <jani.nikula at intel.com>
> ---
> drivers/gpu/drm/drm_edid.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/drivers/gpu/drm/drm_edid.c b/drivers/gpu/drm/drm_edid.c
> index 1688ff5..830f750 100644
> --- a/drivers/gpu/drm/drm_edid.c
> +++ b/drivers/gpu/drm/drm_edid.c
> @@ -2925,6 +2925,8 @@ int drm_edid_to_speaker_allocation(struct edid *edid, u8 **sadb)
> /* Speaker Allocation Data Block */
> if (dbl == 3) {
> *sadb = kmalloc(dbl, GFP_KERNEL);
> + if (!*sadb)
> + return -ENOMEM;
> memcpy(*sadb, &db[1], dbl);
> count = dbl;
> break;
> --
> 1.8.3.1
>
> _______________________________________________
> dri-devel mailing list
> dri-devel at lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/dri-devel
More information about the dri-devel
mailing list