Merge "Invert the order of event sending and VpnRunner.exit()"
This commit is contained in:
@@ -4042,9 +4042,11 @@ public class Vpn {
|
|||||||
// To stop the VPN profile, the caller must be the current prepared package and must be
|
// To stop the VPN profile, the caller must be the current prepared package and must be
|
||||||
// running an Ikev2VpnProfile.
|
// running an Ikev2VpnProfile.
|
||||||
if (isCurrentIkev2VpnLocked(packageName)) {
|
if (isCurrentIkev2VpnLocked(packageName)) {
|
||||||
notifyVpnManagerVpnStopped(packageName, mOwnerUID);
|
// Cache ownerUid to prevent the value being changed after performing VpnRunner.exit().
|
||||||
|
final int ownerUid = mOwnerUID;
|
||||||
|
|
||||||
mVpnRunner.exit();
|
mVpnRunner.exit();
|
||||||
|
notifyVpnManagerVpnStopped(packageName, ownerUid);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user