提交 04bc9365 编写于 作者: A Alexey Khoroshilov 提交者: Mauro Carvalho Chehab

[media] radio-maxiradio: fix memory leak when device is removed

Memory allocated for maxiradio device is not deallocated when
the device is removed.

Found by Linux Driver Verification project (linuxtesting.org).
Signed-off-by: NAlexey Khoroshilov <khoroshilov@ispras.ru>
Signed-off-by: NHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: NMauro Carvalho Chehab <mchehab@s-opensource.com>
上级 d27d5f1a
...@@ -183,6 +183,7 @@ static void maxiradio_remove(struct pci_dev *pdev) ...@@ -183,6 +183,7 @@ static void maxiradio_remove(struct pci_dev *pdev)
outb(0, dev->io); outb(0, dev->io);
v4l2_device_unregister(v4l2_dev); v4l2_device_unregister(v4l2_dev);
release_region(pci_resource_start(pdev, 0), pci_resource_len(pdev, 0)); release_region(pci_resource_start(pdev, 0), pci_resource_len(pdev, 0));
kfree(dev);
} }
static struct pci_device_id maxiradio_pci_tbl[] = { static struct pci_device_id maxiradio_pci_tbl[] = {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册