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

Commit c6c8b563 authored by Kenny Root's avatar Kenny Root Committed by Android Git Automerger
Browse files

am cf2b944d: am 5a1d5a8c: Merge "ueventd: call _exit for safety"

* commit 'cf2b944d':
  ueventd: call _exit for safety
parents a024c2e7 cf2b944d
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -938,7 +938,9 @@ static void handle_firmware_event(struct uevent *uevent)
    pid = fork();
    if (!pid) {
        process_firmware_event(uevent);
        exit(EXIT_SUCCESS);
        _exit(EXIT_SUCCESS);
    } else if (pid < 0) {
        log_event_print("could not fork to process firmware event: %s\n", strerror(errno));
    }
}