Loading services/core/java/com/android/server/IpSecService.java +5 −1 Original line number Original line Diff line number Diff line Loading @@ -206,7 +206,11 @@ public class IpSecService extends IIpSecService.Stub { T get(int key) { T get(int key) { T val = mArray.get(key); T val = mArray.get(key); // The value should never be null unless the resource doesn't exist // (since we do not allow null resources to be added). if (val != null) { val.checkOwnerOrSystemAndThrow(); val.checkOwnerOrSystemAndThrow(); } return val; return val; } } Loading Loading
services/core/java/com/android/server/IpSecService.java +5 −1 Original line number Original line Diff line number Diff line Loading @@ -206,7 +206,11 @@ public class IpSecService extends IIpSecService.Stub { T get(int key) { T get(int key) { T val = mArray.get(key); T val = mArray.get(key); // The value should never be null unless the resource doesn't exist // (since we do not allow null resources to be added). if (val != null) { val.checkOwnerOrSystemAndThrow(); val.checkOwnerOrSystemAndThrow(); } return val; return val; } } Loading