Skip to content

FIX: Suprocess loops endlessly when the control socket closes.

Created by: tobiasblass

recvmsg(3) returns 0 if the connection partner has shut down its socket. The communicate function considered 0 a successful message, though, and keeps calling recvmsg(3) again and again.

Merge request reports