From dfd7e0483e79a3134bab43cfb11a5183042e6b97 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Tue, 7 Jul 2020 22:30:32 -0400 Subject: Allocate enough bind space for :open and :close Big oops! --- scoop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scoop.c b/scoop.c index 9605530..078fc06 100644 --- a/scoop.c +++ b/scoop.c @@ -397,7 +397,7 @@ int main(int argc, char *argv[]) { const char *limit = NULL; int n = 0; - struct Bind binds[argc]; + struct Bind binds[argc + 2]; const char *Opts = "D:F:LN:ST:a:b:c:d:f:gh:l:m:n:pqst:u:vw:"; for (int opt; 0 < (opt = getopt(argc, argv, Opts));) { switch (opt) { -- cgit 1.4.1