From 95798b5c3b0128359aaba107e2bda077459a8560 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20M=C3=B6ller?= Date: Thu, 12 Jul 2018 22:39:00 +0200 Subject: [PATCH] Fix handling of eratosthenes -q. --- ChangeLog | 1 + examples/eratosthenes.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 0dbacaa0..23a0331a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,7 @@ * examples/eratosthenes.c (main): Don't allocate bitmap storage for limit == 2 (early exit), closing memory leak at exit. + (main): Fix handling of short -q option. * eccdata.c (output_curve): Replace mpz_init_set_ui by mpz_set_ui, to fix memory leak. diff --git a/examples/eratosthenes.c b/examples/eratosthenes.c index 415c6d25..71161820 100644 --- a/examples/eratosthenes.c +++ b/examples/eratosthenes.c @@ -262,7 +262,7 @@ main (int argc, char **argv) { NULL, 0, NULL, 0} }; - while ( (c = getopt_long(argc, argv, "svb:", options, NULL)) != -1) + while ( (c = getopt_long(argc, argv, "svqb:", options, NULL)) != -1) switch (c) { case OPT_HELP: -- GitLab