lkml.org 
[lkml]   [2010]   [Jul]   [15]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH 2/12] ak4642: fix a memory leak if failed to initialise AK4642

Dear Axel

Thanks about this patch

> --- a/sound/soc/codecs/ak4642.c
> +++ b/sound/soc/codecs/ak4642.c
> @@ -491,8 +491,10 @@ static int ak4642_i2c_probe(struct i2c_client *i2c,
> codec->control_data = i2c;
>
> ret = ak4642_init(ak4642);
> - if (ret < 0)
> + if (ret < 0) {
> printk(KERN_ERR "failed to initialise AK4642\n");
> + kfree(ak4642);
> + }
>
> return ret;
> }

Indeed. this operation is needed when error case.

I think
i2c_set_clientdata(i2c, NULL); is needed here too.
(da7210 also)

And why ak4642's patch doesn't have
snd_soc_unregister_codec fix like da7210 ?
I think ak4642 have same issue

Best regards
--
Kuninori Morimoto



\
 
 \ /
  Last update: 2010-07-15 08:19    [W:0.177 / U:0.116 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site