am a19e1d1c: am 4d763df3: Merge "Fix a broken boolean test found by clang."

* commit 'a19e1d1c6519e6adaa37ae151dc87cb04fe998b0':
  Fix a broken boolean test found by clang.
This commit is contained in:
Elliott Hughes
2014-07-07 18:08:46 +00:00
committed by Android Git Automerger

View File

@@ -408,7 +408,7 @@ static void malloc_init_impl() {
dlclose(malloc_impl_handle);
return;
}
if (malloc_debug_initialize(&g_hash_table) == -1) {
if (!malloc_debug_initialize(&g_hash_table)) {
dlclose(malloc_impl_handle);
return;
}