mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-25 17:25:08 +02:00
Replace clone_from_transport() (which dup()s the FD) with from_transport() (which releases the FD) in the WebWorkerClient call site. The UI process never uses the WebWorkerClient connection after spawning — it only passes the transport to WebContent — so releasing instead of cloning is safe and simpler. This removes clone_from_transport() from TransportHandle, and clone_for_transfer() from TransportSocket/TransportSocketWindows, as they no longer have any callers.