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

Commit 507be15c authored by Greg Kaiser's avatar Greg Kaiser Committed by android-build-merger
Browse files

Merge "adb: Fix return value in error case" am: 2925a580

am: 73308830

Change-Id: I7cf13d7e4f5850b99fdd843fbd09e349cfea8bee
parents d8987190 73308830
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -259,7 +259,7 @@ static bool __adb_check_server_version(std::string* error) {
        if (fd >= 0) {
            std::string version_string;
            if (!ReadProtocolString(fd, &version_string, error)) {
                return -1;
                return false;
            }

            ReadOrderlyShutdown(fd);