From c27363f566274a65067d7559f9669f300f957183 Mon Sep 17 00:00:00 2001 From: Rich Salz Date: Sun, 20 Aug 2017 17:10:48 -0400 Subject: Check # of arguments for remaining commands. Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/4201) --- apps/rand.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'apps/rand.c') diff --git a/apps/rand.c b/apps/rand.c index 34550065c0..cf45b43b2c 100644 --- a/apps/rand.c +++ b/apps/rand.c @@ -77,9 +77,13 @@ int rand_main(int argc, char **argv) } argc = opt_num_rest(); argv = opt_rest(); - - if (argc != 1 || !opt_int(argv[0], &num) || num < 0) + if (argc == 1) { + if (!opt_int(argv[0], &num) || num <= 0) + goto end; + } else if (argc > 0) { + BIO_printf(bio_err, "Extra arguments given.\n"); goto opthelp; + } out = bio_open_default(outfile, 'w', format); if (out == NULL) -- cgit v1.2.3