This commit is contained in:
Karl Seguin
2025-02-06 22:33:54 +08:00
parent 92afcd174d
commit 0753eb7691

View File

@@ -252,7 +252,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();