mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-13 01:08:50 +00:00
V4L/DVB (6325): Double-free in cx23885_initdev
Both cx23885_initdev and cx23885_dev_setup free the device in their error path so a failure in the latter causes a double-free. Since cx23885_dev_setup is only called from cx23885_initdev, it should be safe to remove its deallocation and leave the cleanup up to the allocating function. Coverity CID 1922. Signed-off-by: Florin Malita <fmalita@gmail.com> CC: Steven Toth <stoth@hauppauge.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
This commit is contained in:
parent
a13625c518
commit
fcf94c89af
@ -793,7 +793,7 @@ static int cx23885_dev_setup(struct cx23885_dev *dev)
|
|||||||
dev->pci->subsystem_device);
|
dev->pci->subsystem_device);
|
||||||
|
|
||||||
cx23885_devcount--;
|
cx23885_devcount--;
|
||||||
goto fail_free;
|
return -ENODEV;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* PCIe stuff */
|
/* PCIe stuff */
|
||||||
@ -835,10 +835,6 @@ static int cx23885_dev_setup(struct cx23885_dev *dev)
|
|||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
fail_free:
|
|
||||||
kfree(dev);
|
|
||||||
return -ENODEV;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void cx23885_dev_unregister(struct cx23885_dev *dev)
|
void cx23885_dev_unregister(struct cx23885_dev *dev)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user