From 05f614b224dd13623e240a9075b0ade2b312b982 Mon Sep 17 00:00:00 2001 From: root <> Date: Sat, 17 May 2025 08:20:30 +0000 Subject: [PATCH] typo: writing POLLOUT beyond pollfds array bounds --- client.s | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client.s b/client.s index 557898f..a8d670f 100644 --- a/client.s +++ b/client.s @@ -48,7 +48,7 @@ client__pollin: je client__pollin__no_line mov rax, 1 - mov word [pollfds + rdx * pollfd_size + 4], POLLOUT + mov word [pollfds + rbx * pollfd_size + 4], POLLOUT client__pollin__return: pop r14