diff options
author | June McEnroe <june@causal.agency> | 2020-07-07 22:30:32 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-07-07 22:31:00 -0400 |
commit | dfd7e0483e79a3134bab43cfb11a5183042e6b97 (patch) | |
tree | d07b5ada847dd6ae141ce3aae07aa1ac228d56ec | |
parent | Create index on events.time (diff) | |
download | litterbox-dfd7e0483e79a3134bab43cfb11a5183042e6b97.tar.gz litterbox-dfd7e0483e79a3134bab43cfb11a5183042e6b97.zip |
Allocate enough bind space for :open and :close
Big oops!
-rw-r--r-- | scoop.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |