diff options
| -rw-r--r-- | talpid-core/src/tunnel_state_machine/mod.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/talpid-core/src/tunnel_state_machine/mod.rs b/talpid-core/src/tunnel_state_machine/mod.rs index 1ea42e85c4..22020ec76b 100644 --- a/talpid-core/src/tunnel_state_machine/mod.rs +++ b/talpid-core/src/tunnel_state_machine/mod.rs @@ -367,6 +367,9 @@ impl TunnelStateMachine { ) .map_err(Error::InitSplitTunneling); + // NOTE: Do not spawn any processes here. There is a bug in the split tunnel driver that + // can trigger a bug check/BSOD if processes are spawned or killed during a failed init. + result? }; |
