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

Commit aaf06162 authored by Nikhil Kumar's avatar Nikhil Kumar Committed by Automerger Merge Worker
Browse files

Merge "Use unsigned calling_uid in case of bug report triggered from adb" into...

Merge "Use unsigned calling_uid in case of bug report triggered from adb" into udc-dev am: 90721097

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/native/+/23710687



Change-Id: I52cf50d5b524b9b8d3bf38e748130619a4804ba5
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 1c33a6f4 90721097
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -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.
        // an app; they are irrelevant here because bugreport is triggered via command line.
        // Update Last ID before calling Run().
        // Update Last ID before calling Run().
        Initialize();
        Initialize();
        status = Run(-1 /* calling_uid */, "" /* calling_package */);
        status = Run(0 /* calling_uid */, "" /* calling_package */);
    }
    }
    return status;
    return status;
}
}