lib: fix memory leak in rtlsdr_open()
Thanks to Vincent Perrier for reporting the bug.
This commit is contained in:
@@ -1628,6 +1628,9 @@ found:
|
|||||||
return 0;
|
return 0;
|
||||||
err:
|
err:
|
||||||
if (dev) {
|
if (dev) {
|
||||||
|
if (dev->devh)
|
||||||
|
libusb_close(dev->devh);
|
||||||
|
|
||||||
if (dev->ctx)
|
if (dev->ctx)
|
||||||
libusb_exit(dev->ctx);
|
libusb_exit(dev->ctx);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user