From 08779aa2a3ddb67f10357962c3bb8fde8820cef5 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Tue, 24 Feb 2026 08:27:15 +0000 Subject: [PATCH] Fix breakage in fuzzer, from David Korczynski, GitHub issue 4871. --- fuzz/input-fuzzer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fuzz/input-fuzzer.c b/fuzz/input-fuzzer.c index c7c5c99b..0e441547 100644 --- a/fuzz/input-fuzzer.c +++ b/fuzz/input-fuzzer.c @@ -44,7 +44,7 @@ LLVMFuzzerTestOneInput(const u_char *data, size_t size) w = window_create(PANE_WIDTH, PANE_HEIGHT, 0, 0); wp = window_add_pane(w, NULL, 0, 0); bufferevent_pair_new(libevent, BEV_OPT_CLOSE_ON_FREE, vpty); - wp->ictx = input_init(wp, vpty[0], NULL); + wp->ictx = input_init(wp, vpty[0], NULL, NULL); window_add_ref(w, __func__); wp->fd = open("/dev/null", O_WRONLY);