commit | 549ae327245a844862065dc9bb0562544e8c3beb | [log] [tgz] |
---|---|---|
author | Narayan Kamath <narayan@google.com> | Mon Apr 14 08:41:42 2014 +0000 |
committer | Android Git Automerger <android-git-automerger@android.com> | Mon Apr 14 08:41:42 2014 +0000 |
tree | 60abb7fb8592f5e3a56b617751e2c8b2596fd5d9 | |
parent | 97953b308f9159a73061ae047e368eac503c1931 [diff] | |
parent | aa19a2f69c33fdb6499d0bc1cfafced9f572da5b [diff] |
am aa19a2f6: Merge "Don\'t compare String8s to NULL." * commit 'aa19a2f69c33fdb6499d0bc1cfafced9f572da5b': Don't compare String8s to NULL.
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 @@ virtual void onExit(int code) { - if (mClassName == NULL) { + if (mClassName.isEmpty()) { // if zygote IPCThreadState::self()->stopProcess(); }