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

Commit cdfae160 authored by Tom Cherry's avatar Tom Cherry Committed by android-build-merger
Browse files

Merge "Use only signed/unsigned numbers with ParseInt/ParseUint respectively"...

Merge "Use only signed/unsigned numbers with ParseInt/ParseUint respectively" am: 6b39f9d4 am: 72b3ab50
am: de265448

Change-Id: I335d36268dd12c9a1def38c7730f9627feb06232
parents dd589355 de265448
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -265,7 +265,7 @@ uid_t llkProcGetUid(pid_t tid) {
    }
    content.erase(pos);
    uid_t ret;
    if (!android::base::ParseInt(content, &ret, uid_t(0))) {
    if (!android::base::ParseUint(content, &ret, uid_t(0))) {
        return -1;
    }
    return ret;