mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-13 21:02:35 +00:00
[media] em28xx-input: NULL dereference on error
We call "kfree(ir->i2c_client);" in the error handling and that doesn't work if "ir" is NULL. Fixes: 78e719a5f30b ('[media] em28xx-input: i2c IR decoders: improve i2c_client handling') Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Acked-by: Frank Schäfer <fschaefer.oss@googlemail.com> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
This commit is contained in:
parent
1a5cfd0227
commit
34d7c248ad
@ -712,8 +712,10 @@ static int em28xx_ir_init(struct em28xx *dev)
|
||||
em28xx_info("Registering input extension\n");
|
||||
|
||||
ir = kzalloc(sizeof(*ir), GFP_KERNEL);
|
||||
if (!ir)
|
||||
return -ENOMEM;
|
||||
rc = rc_allocate_device();
|
||||
if (!ir || !rc)
|
||||
if (!rc)
|
||||
goto error;
|
||||
|
||||
/* record handles to ourself */
|
||||
|
Loading…
x
Reference in New Issue
Block a user