am 502e4595
: am d1c64060
: am 5fbb729f
: Merge "exit instead of return if sideload file creation fails"
* commit '502e45957420484eec2367e7580e9bec96605c5d': exit instead of return if sideload file creation fails
This commit is contained in:
commit
ffb557d351
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ static void sideload_service(int s, void *cookie)
|
|||
if(fd < 0) {
|
||||
fprintf(stderr, "failed to create %s\n", ADB_SIDELOAD_FILENAME);
|
||||
adb_close(s);
|
||||
return;
|
||||
exit(1);
|
||||
}
|
||||
|
||||
while(count > 0) {
|
||||
|
|
Loading…
Reference in a new issue