summaryrefslogtreecommitdiffstats
path: root/services/camera/libcameraservice/api_pro/ProCamera2Client.cpp
diff options
context:
space:
mode:
authorEino-Ville Talvala <etalvala@google.com>2014-11-07 16:17:48 -0800
committerEino-Ville Talvala <etalvala@google.com>2014-11-07 16:32:55 -0800
commite992e75053e98e3699af6e344c11b787e30411ad (patch)
treec0a88c5e09f9f4a7fdcb56eda9c60497124bf783 /services/camera/libcameraservice/api_pro/ProCamera2Client.cpp
parente1a2df553a6d151807a5da738a3cd853bef908d9 (diff)
downloadframeworks_av-e992e75053e98e3699af6e344c11b787e30411ad.zip
frameworks_av-e992e75053e98e3699af6e344c11b787e30411ad.tar.gz
frameworks_av-e992e75053e98e3699af6e344c11b787e30411ad.tar.bz2
Camera: Guard against asBinder() calls on NULL interfaces
Bug: 18207548 Change-Id: I9879c9b4c0282a6b96b77398f62beedc47f7f0a0
Diffstat (limited to 'services/camera/libcameraservice/api_pro/ProCamera2Client.cpp')
-rw-r--r--services/camera/libcameraservice/api_pro/ProCamera2Client.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/services/camera/libcameraservice/api_pro/ProCamera2Client.cpp b/services/camera/libcameraservice/api_pro/ProCamera2Client.cpp
index 2ea460f..9c8f0f4 100644
--- a/services/camera/libcameraservice/api_pro/ProCamera2Client.cpp
+++ b/services/camera/libcameraservice/api_pro/ProCamera2Client.cpp
@@ -334,7 +334,8 @@ status_t ProCamera2Client::dump(int fd, const Vector<String16>& args) {
String8 result;
result.appendFormat("ProCamera2Client[%d] (%p) PID: %d, dump:\n",
mCameraId,
- getRemoteCallback()->asBinder().get(),
+ (getRemoteCallback() != NULL ?
+ getRemoteCallback()->asBinder().get() : NULL),
mClientPid);
result.append(" State:\n");
write(fd, result.string(), result.size());