We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In firstprime.c, the minimum can't be lower than 1, which means 2 is out of scope, since its index is 0.
The fix is as simple as:
--- coqprime.orig/gencertif/firstprimes.c +++ coqprime/gencertif/firstprimes.c @@ -11204,7 +11204,7 @@ max = atoi(argv[2]); } else exit (1); - if (min < 1) min = 1; + if (min < 0) min = 0; if (max > MAXSIZE) max = MAXSIZE; out = fopen(filename,"w+");
The text was updated successfully, but these errors were encountered:
don't hesitate to do a PR!
Sorry, something went wrong.
I had a quick look, it seems the certificate was invalid for min = 0. I've tried to fix that in the last commit.
Thanks!
This is fixed @SnarkBoojum I will close the issue
No branches or pull requests
In firstprime.c, the minimum can't be lower than 1, which means 2 is out of scope, since its index is 0.
The fix is as simple as:
The text was updated successfully, but these errors were encountered: