Unidiff1 files changed, 1 insertions, 1 deletions
|
diff --git a/cgit.c b/cgit.c index fd341b8..b3a98c1 100644 --- a/ cgit.c+++ b/ cgit.c |
|
@@ -18,13 +18,13 @@ |
18 | const char *cgit_version = CGIT_VERSION; |
18 | const char *cgit_version = CGIT_VERSION; |
19 | |
19 | |
20 | struct cgit_filter *new_filter(const char *cmd, int extra_args) |
20 | struct cgit_filter *new_filter(const char *cmd, int extra_args) |
21 | { |
21 | { |
22 | struct cgit_filter *f; |
22 | struct cgit_filter *f; |
23 | |
23 | |
24 | if (!cmd) |
24 | if (!cmd || !cmd[0]) |
25 | return NULL; |
25 | return NULL; |
26 | |
26 | |
27 | f = xmalloc(sizeof(struct cgit_filter)); |
27 | f = xmalloc(sizeof(struct cgit_filter)); |
28 | f->cmd = xstrdup(cmd); |
28 | f->cmd = xstrdup(cmd); |
29 | f->argv = xmalloc((2 + extra_args) * sizeof(char *)); |
29 | f->argv = xmalloc((2 + extra_args) * sizeof(char *)); |
30 | f->argv[0] = f->cmd; |
30 | f->argv[0] = f->cmd; |
|