[media] r820t: memory leak in release()
I've moved the kfree(fe->tuner_priv) one line earlier, otherwise it is a no-op. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
f7a12fdfd6
commit
ef0c87001c
1 changed files with 1 additions and 2 deletions
|
@ -2252,9 +2252,8 @@ static int r820t_release(struct dvb_frontend *fe)
|
|||
|
||||
mutex_unlock(&r820t_list_mutex);
|
||||
|
||||
fe->tuner_priv = NULL;
|
||||
|
||||
kfree(fe->tuner_priv);
|
||||
fe->tuner_priv = NULL;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue