mirror of
https://github.com/torvalds/linux.git
synced 2024-11-05 03:21:32 +00:00
[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:
parent
8513e14457
commit
0c61cc3ba4
@ -1598,8 +1598,8 @@ int dib7000pc_detection(struct i2c_adapter *i2c_adap)
|
||||
return -ENOMEM;
|
||||
rx = kzalloc(2*sizeof(u8), GFP_KERNEL);
|
||||
if (!rx) {
|
||||
goto rx_memory_error;
|
||||
ret = -ENOMEM;
|
||||
goto rx_memory_error;
|
||||
}
|
||||
|
||||
msg[0].buf = tx;
|
||||
|
Loading…
Reference in New Issue
Block a user