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

Commit 7b7967a8 authored by Julia Reynolds's avatar Julia Reynolds Committed by android-build-merger
Browse files

Merge "Don't crash system server" into oc-mr1-dev

am: fedb3f61

Change-Id: I7d9876ddc195840bbab12d1847f6cad3c88b3630
parents ffbb5666 fedb3f61
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -494,7 +494,7 @@ abstract public class ManagedServices {
            return info;
        }
        throw new SecurityException("Disallowed call from unknown " + getCaption() + ": "
                + service);
                + service + " " + service.getClass());
    }

    public void unregisterService(IInterface service, int userid) {
+3 −0
Original line number Diff line number Diff line
@@ -737,6 +737,9 @@ public class ZenModeHelper {
            mConfig = config;
            mHandler.postApplyConfig(config, reason, setRingerMode);
            return true;
        } catch (SecurityException e) {
            Log.wtf(TAG, "Invalid rule in config", e);
            return false;
        } finally {
            Binder.restoreCallingIdentity(identity);
        }