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

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

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

* commit '5fbb729f':
  exit instead of return if sideload file creation fails
parents d4592694 5fbb729f
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) {