Merge "HwBinder: call _exit over exit."

This commit is contained in:
Treehugger Robot
2019-04-30 23:46:35 +00:00
committed by Gerrit Code Review

View File

@@ -188,7 +188,7 @@ status_t JHwBinder::onTransact(
if (env->IsInstanceOf(excep, gErrorClass)) {
/* It's an error */
LOG(ERROR) << "Forcefully exiting";
exit(1);
_exit(1);
} else {
LOG(ERROR) << "Uncaught exception!";
}