Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ffb557d3 authored by Doug Zongker's avatar Doug Zongker Committed by Android Git Automerger
Browse files

am 502e4595: am d1c64060: am 5fbb729f: Merge "exit instead of return if...

am 502e4595: am d1c64060: am 5fbb729f: Merge "exit instead of return if sideload file creation fails"

* commit '502e4595':
  exit instead of return if sideload file creation fails
parents ddb1b744 502e4595
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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) {