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

Commit eb9dddbf authored by Romain Guy's avatar Romain Guy Committed by Android (Google) Code Review
Browse files

Merge "Lookup permission groups by name" into jb-mr2-dev

parents 88a1cf84 01d159d8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1454,7 +1454,7 @@ public class PackageManagerService extends IPackageManager.Stub {
                if ("group".equals(name)) {
                    String gidStr = parser.getAttributeValue(null, "gid");
                    if (gidStr != null) {
                        int gid = Integer.parseInt(gidStr);
                        int gid = Process.getGidForName(gidStr);
                        mGlobalGids = appendInt(mGlobalGids, gid);
                    } else {
                        Slog.w(TAG, "<group> without gid at "