diff options
Diffstat (limited to 'eval.c')
-rw-r--r-- | eval.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -568,6 +568,10 @@ static int infer_fdlimit() { * Evaluate the command line. */ int eval_cmdline(const struct cmdline *cmdline) { + if (!cmdline->expr) { + return 0; + } + int nopenfd = infer_fdlimit(); struct callback_args args = { |