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

Commit 9d892a8e authored by Android (Google) Code Review's avatar Android (Google) Code Review
Browse files

Merge change 2336 into donut

* changes:
  dumpstate: Add to AID_SDCARD_RW group to fix saving bugreports to the SD card.
parents 9681a5e0 472be480
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -165,6 +165,7 @@ int main(int argc, char *argv[]) {
    int c, fd, vibrate_fd, fds[2];
    char path[PATH_MAX];
    pid_t   pid;
    gid_t groups[] = { AID_LOG, AID_SDCARD_RW };

    /* set as high priority, and protect from OOM killer */
    setpriority(PRIO_PROCESS, 0, -20);
@@ -207,7 +208,7 @@ int main(int argc, char *argv[]) {
        vibrate_fd = -1;

    /* switch to non-root user and group */
    setgid(AID_LOG);
    setgroups(sizeof(groups)/sizeof(groups[0]), groups);
    setuid(AID_SHELL);

    /* make it safe to use both printf and STDOUT_FILENO */