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

Commit 95cd5d58 authored by Gustav Sennton's avatar Gustav Sennton Committed by Android (Google) Code Review
Browse files

Merge "Clear calling identity when enabling WebView fallback logic." into nyc-dev

parents f4d38053 6824c7c1
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -242,7 +242,12 @@ public class WebViewUpdateService extends SystemService {
                throw new SecurityException(msg);
            }

            long callingId = Binder.clearCallingIdentity();
            try {
                WebViewUpdateService.this.mImpl.enableFallbackLogic(enable);
            } finally {
                Binder.restoreCallingIdentity(callingId);
            }
        }
    }
}