Merge "Correctly handle null ProxyInfo in Ikev2VpnProfile" am: a03fa63d19 am: a50c41b050
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2200896 Change-Id: I600dc5f51430b2702cbb13af066e458e190561fe Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
@@ -171,7 +171,7 @@ public final class Ikev2VpnProfile extends PlatformVpnProfile {
|
||||
mPassword = password;
|
||||
mRsaPrivateKey = rsaPrivateKey;
|
||||
mUserCert = userCert;
|
||||
mProxyInfo = new ProxyInfo(proxyInfo);
|
||||
mProxyInfo = (proxyInfo == null) ? null : new ProxyInfo(proxyInfo);
|
||||
|
||||
// UnmodifiableList doesn't make a defensive copy by default.
|
||||
mAllowedAlgorithms = Collections.unmodifiableList(new ArrayList<>(allowedAlgorithms));
|
||||
|
||||
Reference in New Issue
Block a user