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

Commit fedb3f61 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

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

parents 563cd2d3 cb507b82
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);
        }