commit | ffb557d351776bed40818fa77afaa743d9e34a34 | [log] [tgz] |
---|---|---|
author | Doug Zongker <dougz@android.com> | Fri May 16 17:49:39 2014 +0000 |
committer | Android Git Automerger <android-git-automerger@android.com> | Fri May 16 17:49:39 2014 +0000 |
tree | 1f0f96439c3c176b99ca77bdc118df2c62c6c24f | |
parent | ddb1b744983e37b51fc20759bbf8dac31f4d30ad [diff] | |
parent | 502e45957420484eec2367e7580e9bec96605c5d [diff] |
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
diff --git a/minadbd/services.c b/minadbd/services.c index 4698528..752b33e 100644 --- a/minadbd/services.c +++ b/minadbd/services.c
@@ -55,7 +55,7 @@ if(fd < 0) { fprintf(stderr, "failed to create %s\n", ADB_SIDELOAD_FILENAME); adb_close(s); - return; + exit(1); } while(count > 0) {