summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2014-10-02 00:48:43 +0200
committerGravatar Martin Szulecki2014-10-02 00:48:43 +0200
commitcdc67e5a997d08158bcb24d51ca991838106bc7e (patch)
tree147ca386e1c36cf0d2c1161d5475755903c5ed6a /tools
parentec1e5190b4a2f9b56500fee0bcd747cedac1426b (diff)
downloadlibirecovery-cdc67e5a997d08158bcb24d51ca991838106bc7e.tar.gz
libirecovery-cdc67e5a997d08158bcb24d51ca991838106bc7e.tar.bz2
Don't call libusb_exit() in irecv_open_with_ecid() on error
The helper might be used multiple times and the library should not cause deinitialization of libusb before the user calls irecv_exit().
Diffstat (limited to 'tools')
-rw-r--r--tools/irecovery.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/irecovery.c b/tools/irecovery.c
index 9c153d8..1b1386a 100644
--- a/tools/irecovery.c
+++ b/tools/irecovery.c
@@ -518,6 +518,7 @@ int main(int argc, char* argv[]) {
}
irecv_close(client);
+ irecv_exit();
return 0;
}