[alsa-devel] [PATCH 2/2] ASoC: Add BUG() assertion if max98095_get_bq_channel returns -EINVAL
Dave Young
hidave.darkstar at gmail.com
Thu Sep 29 03:35:04 CEST 2011
On Thu, Sep 29, 2011 at 7:19 AM, Ryan Mallon <rmallon at gmail.com> wrote:
> On 29/09/11 00:02, Axel Lin wrote:
>> The callers use the return value of max98095_get_bq_channel as array index to
>> access max98095->dai[] array.
>> Add BUG() assertion for out of bound access of max98095->dai[] array.
>
> Same here, fix the problem in the callers.
>
> ----
> Check the return value of max98095_get_bq_channel in the callers and
> propagate any errors up. Remove the BUG_ON(channel > 1) since
> max98095_get_bq_channel never returns a value larger than 1.
>
> Signed-off-by: Ryan Mallon <rmallon at gmail.com>
> ---
>
> diff --git a/sound/soc/codecs/max98095.c b/sound/soc/codecs/max98095.c
> index 668434d..55eccea 100644
> --- a/sound/soc/codecs/max98095.c
> +++ b/sound/soc/codecs/max98095.c
> @@ -2014,7 +2014,8 @@ static int max98095_put_bq_enum(struct snd_kcontrol *kcontrol,
> int fs, best, best_val, i;
> int regmask, regsave;
>
> - BUG_ON(channel > 1);
> + if (channel < 0)
> + return channel;
If use BUG() happens in max98095_get_bq_channel, it will not return here?
>
> if (!pdata || !max98095->bq_textcnt)
> return 0;
> @@ -2069,6 +2070,9 @@ static int max98095_get_bq_enum(struct snd_kcontrol *kcontrol,
> int channel = max98095_get_bq_channel(kcontrol->id.name);
> struct max98095_cdata *cdata;
>
> + if (channel < 0)
> + return channel;
> +
> cdata = &max98095->dai[channel];
> ucontrol->value.enumerated.item[0] = cdata->bq_sel;
>
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo at vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
>
--
Regards
Dave
More information about the Alsa-devel
mailing list