[media] dib7000p: return error code on allocation failure
The goto needs to be moved after the assignment. Signed-off-by: Dan Carpenter <error27@gmail.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
committed by
Mauro Carvalho Chehab
parent
8513e14457
commit
0c61cc3ba4
@@ -1598,8 +1598,8 @@ int dib7000pc_detection(struct i2c_adapter *i2c_adap)
|
|||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
rx = kzalloc(2*sizeof(u8), GFP_KERNEL);
|
rx = kzalloc(2*sizeof(u8), GFP_KERNEL);
|
||||||
if (!rx) {
|
if (!rx) {
|
||||||
goto rx_memory_error;
|
|
||||||
ret = -ENOMEM;
|
ret = -ENOMEM;
|
||||||
|
goto rx_memory_error;
|
||||||
}
|
}
|
||||||
|
|
||||||
msg[0].buf = tx;
|
msg[0].buf = tx;
|
||||||
|
|||||||
Reference in New Issue
Block a user