* Michele Orru` <[email protected]>, 2016-04-10, 13:33:
for (int j = 0; j < argc-1; ++j) {
mpz_set_str(key[j], argv[j], 2);
mpz_set_str() works only on objects that are already initialized. You want mpz_init_set_str() instead. Also, it should probably be argv[j + 1]. -- Jakub Wilk -- debian-science-maintainers mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-science-maintainers
