summaryrefslogtreecommitdiffstats
path: root/libs/binder/IServiceManager.cpp
diff options
context:
space:
mode:
authorMarco Nelissen <marcone@google.com>2014-11-14 08:01:01 -0800
committerMarco Nelissen <marcone@google.com>2014-11-14 14:01:29 -0800
commit2ea926bda2fa30f3ba8d0ed2d2395a8ada952e6e (patch)
treeaf1a760841833f80084aac64b548471259b647a4 /libs/binder/IServiceManager.cpp
parentaedb1c843e9a1d3149ca81d586fa168d146d8f5e (diff)
downloadframeworks_native-2ea926bda2fa30f3ba8d0ed2d2395a8ada952e6e.zip
frameworks_native-2ea926bda2fa30f3ba8d0ed2d2395a8ada952e6e.tar.gz
frameworks_native-2ea926bda2fa30f3ba8d0ed2d2395a8ada952e6e.tar.bz2
Replace IInterface::asBinder() with a static
so we can do NULL checks again, and update calls to IInterface::asBinder() to use the new static version. Change-Id: Ia7b10eb38ca55b72278bfd33d3bf647f338b4e6a
Diffstat (limited to 'libs/binder/IServiceManager.cpp')
-rw-r--r--libs/binder/IServiceManager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/binder/IServiceManager.cpp b/libs/binder/IServiceManager.cpp
index 7b1b0e7..3c716df 100644
--- a/libs/binder/IServiceManager.cpp
+++ b/libs/binder/IServiceManager.cpp
@@ -87,7 +87,7 @@ bool checkPermission(const String16& permission, pid_t pid, uid_t uid)
}
// Is this a permission failure, or did the controller go away?
- if (pc->asBinder()->isBinderAlive()) {
+ if (IInterface::asBinder(pc)->isBinderAlive()) {
ALOGW("Permission failure: %s from uid=%d pid=%d",
String8(permission).string(), uid, pid);
return false;