Merge "ueventd: call _exit for safety"
This commit is contained in:
commit
5a1d5a8c79
1 changed files with 3 additions and 1 deletions
|
@ -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));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue