Merge "Revert "Invert the order of event sending and VpnRunner.exit()"" am: 1660147b84 am: 880e944b9c

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2183496

Change-Id: I632a705f48a53510e8eb6dbf573da5b43e45f615
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Chiachang Wang
2022-08-11 13:14:28 +00:00
committed by Automerger Merge Worker

View File

@@ -4042,11 +4042,9 @@ public class Vpn {
// To stop the VPN profile, the caller must be the current prepared package and must be
// running an Ikev2VpnProfile.
if (isCurrentIkev2VpnLocked(packageName)) {
// Cache ownerUid to prevent the value being changed after performing VpnRunner.exit().
final int ownerUid = mOwnerUID;
notifyVpnManagerVpnStopped(packageName, mOwnerUID);
mVpnRunner.exit();
notifyVpnManagerVpnStopped(packageName, ownerUid);
}
}