Don't destroy the libusb context before freeing the device list.

This commit is contained in:
Michael Ehrenreich 2015-03-21 02:57:03 +01:00
parent 39c41f5c70
commit 905a663a96
1 changed files with 3 additions and 2 deletions

View File

@ -168,10 +168,11 @@ void Setup()
}
}
}
if (!s_detected)
Shutdown();
libusb_free_device_list(list, 1);
if (!s_detected)
Shutdown();
}