This commit is contained in:
Karl Seguin
2025-02-06 22:33:54 +08:00
parent 733c6b4c17
commit 72eaab68be

View File

@@ -251,7 +251,7 @@ const Server = struct {
fn callbackClose(self: *Server, completion: *Completion, _: CloseError!void) void { fn callbackClose(self: *Server, completion: *Completion, _: CloseError!void) void {
std.debug.assert(completion == &self.close_completion); std.debug.assert(completion == &self.close_completion);
if (self.client != null) { if (self.client != null) {
self.client = null; self.client = null;
} }
self.queueAccept(); self.queueAccept();