0

sandbox/linux: Remove code after _exit(1)

`_exit()` is marked as noreturn. (If it wasn't, the compiler would
complain about the missing return at the end of this non-void function.)

No behavior change.

Bug: 393924694
Change-Id: I73d73570768aa82140a527ae7d0658a839464531
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6298662
Auto-Submit: Nico Weber <thakis@chromium.org>
Reviewed-by: Matthew Denton <mpdenton@chromium.org>
Commit-Queue: Matthew Denton <mpdenton@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1427298}
This commit is contained in:
Nico Weber
2025-03-03 11:58:50 -08:00
committed by Chromium LUCI CQ
parent 4c6324ceea
commit d9dee14cef

@ -95,7 +95,6 @@ bool BrokerProcess::ForkSignalBasedBroker(
parent_pid);
broker_host_signal_based.LoopAndHandleRequests();
_exit(1);
NOTREACHED();
}
bool BrokerProcess::Fork(BrokerSideCallback broker_process_init_callback) {