Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bb2f0fb3 authored by Steven Moreland's avatar Steven Moreland
Browse files

HwBinder: call _exit over exit.

Avoid calls to static destructors.

Fixes: 131589658
Test: TH
Change-Id: I52ddcda75e902965f8d4a13f4851e6bdcbe4b0e5
parent 4a208ae1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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!";
        }