diff options
| author | 2023-06-16 18:02:22 +0000 | |
|---|---|---|
| committer | 2023-06-16 18:02:22 +0000 | |
| commit | b57c1c1ee077936a6f7d037cf403d09ba5ff189c (patch) | |
| tree | dd6affa984a6284de666affeefcbe6cabf859802 | |
| parent | 6ad305a88bc2e4ec6640bfe61b4ca86c6f578206 (diff) | |
| parent | 9072109773b62cdb89613d78534252164dfe760f (diff) | |
Merge "Use unsigned calling_uid in case of bug report triggered from adb" into udc-dev am: 9072109773
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/native/+/23710687
Change-Id: Ibfdac36e26d855dbe155f15e1f9c8ecbe4328811
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
| -rw-r--r-- | cmds/dumpstate/dumpstate.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/dumpstate/dumpstate.cpp b/cmds/dumpstate/dumpstate.cpp index 5dbf7ac715..8a337569c4 100644 --- a/cmds/dumpstate/dumpstate.cpp +++ b/cmds/dumpstate/dumpstate.cpp @@ -3586,7 +3586,7 @@ Dumpstate::RunStatus Dumpstate::ParseCommandlineAndRun(int argc, char* argv[]) { // an app; they are irrelevant here because bugreport is triggered via command line. // Update Last ID before calling Run(). Initialize(); - status = Run(-1 /* calling_uid */, "" /* calling_package */); + status = Run(0 /* calling_uid */, "" /* calling_package */); } return status; } |