diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2015-08-31 11:24:15 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2015-08-31 11:24:15 -0400 |
commit | e6a306668a5110e59ace562909d9fdd412369656 (patch) | |
tree | de9043feb265d72a9fc01daf42e5bbd0b32114d9 | |
parent | c2348b1a2e6badc64fb3b36f920f550de262d9b4 (diff) | |
download | bfs-e6a306668a5110e59ace562909d9fdd412369656.tar.xz |
Don't forget to initialize cl->expr.
-rw-r--r-- | bfs.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -499,6 +499,7 @@ static cmdline *parse_cmdline(int argc, char *argv[]) { cl->colors = NULL; cl->color = isatty(STDOUT_FILENO); cl->flags = BFTW_RECOVER; + cl->expr = NULL; parser_state state = { .cl = cl, |