summaryrefslogtreecommitdiffstats
path: root/cmds
diff options
context:
space:
mode:
authorNarayan Kamath <narayan@google.com>2014-04-14 08:46:17 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-04-14 08:46:17 +0000
commit964570044ef6b5d721a1372b2bb65c4585947353 (patch)
tree78c046acec1d3988da018a66e885f3754c911500 /cmds
parenteaa8a6b7feb4a520f48654b087223ccaf49b6a2f (diff)
parent549ae327245a844862065dc9bb0562544e8c3beb (diff)
downloadframeworks_base-964570044ef6b5d721a1372b2bb65c4585947353.zip
frameworks_base-964570044ef6b5d721a1372b2bb65c4585947353.tar.gz
frameworks_base-964570044ef6b5d721a1372b2bb65c4585947353.tar.bz2
am 549ae327: am aa19a2f6: Merge "Don\'t compare String8s to NULL."
* commit '549ae327245a844862065dc9bb0562544e8c3beb': Don't compare String8s to NULL.
Diffstat (limited to 'cmds')
-rw-r--r--cmds/app_process/app_main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/app_process/app_main.cpp b/cmds/app_process/app_main.cpp
index c520b58..859d83b 100644
--- a/cmds/app_process/app_main.cpp
+++ b/cmds/app_process/app_main.cpp
@@ -97,7 +97,7 @@ public:
virtual void onExit(int code)
{
- if (mClassName == NULL) {
+ if (mClassName.isEmpty()) {
// if zygote
IPCThreadState::self()->stopProcess();
}