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

Commit 3276c14b 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

am: ff8d576f

Change-Id: I16c96fc9aae4a2c01a5104d5ad36136575aca505
parents 27d4c939 ff8d576f
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;
  }