Merge change Ib8f16340 into eclair-mr2

* changes:
  Fix ConnectivityManager permissions check.
This commit is contained in:
Android (Google) Code Review
2009-10-07 14:36:07 -04:00

View File

@@ -572,6 +572,8 @@ public class ConnectivityService extends IConnectivityManager.Stub {
// javadoc from interface
public int stopUsingNetworkFeature(int networkType, String feature) {
enforceChangePermission();
int pid = getCallingPid();
int uid = getCallingUid();
@@ -611,7 +613,7 @@ public class ConnectivityService extends IConnectivityManager.Stub {
Log.d(TAG, "stopUsingNetworkFeature for net " + networkType +
": " + feature);
}
enforceChangePermission();
if (!ConnectivityManager.isNetworkTypeValid(networkType)) {
return -1;
}