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

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

Merge "debuggerd: Fix return type in error case"

am: 09e3fe25

Change-Id: I1e899f4429a53f81c9007d47ed16562439a0aac7
parents d7f83d91 09e3fe25
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -72,7 +72,7 @@ bool debuggerd_trigger_dump(pid_t tid, DebuggerdDumpType dump_type, unsigned int
    std::string error;
    if (!android::procinfo::GetProcessInfo(tid, &procinfo, &error)) {
      LOG(ERROR) << "libdebugged_client: failed to get process info: " << error;
      return -1;
      return false;
    }
    pid = procinfo.pid;
  }