Your ROOT_URL in app.ini is https://git.ondrovo.com/ but you are visiting http://159.69.29.240:49153/MightyPork/rtl-sdr/commit/be1d1206bfb6e6c41f7d91b20b77e20f929fa6a7?style=unified&whitespace=ignore-change You should set ROOT_URL correctly, otherwise the web may not work correctly.

lib: fix memory leak in rtlsdr_open()

Thanks to Vincent Perrier for reporting the bug.
master
Steve Markgraf 6 years ago
parent 7f2ae12548
commit be1d1206bf
  1. 3
      src/librtlsdr.c

@ -1628,6 +1628,9 @@ found:
return 0;
err:
if (dev) {
if (dev->devh)
libusb_close(dev->devh);
if (dev->ctx)
libusb_exit(dev->ctx);

Loading…
Cancel
Save