From 697039a872c501ff9b31e4e332cbb5b9147bfa41 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Niels=20M=C3=B6ller?= <nisse@lysator.liu.se>
Date: Sun, 6 Oct 2002 23:24:57 +0200
Subject: [PATCH] * sexp2rsa.c (get_value): No need to call sexp_iterator_next
 anymore.

Rev: src/nettle/sexp2rsa.c:1.6
---
 sexp2rsa.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/sexp2rsa.c b/sexp2rsa.c
index aaea4fae..51f16d2b 100644
--- a/sexp2rsa.c
+++ b/sexp2rsa.c
@@ -38,8 +38,7 @@
 static int
 get_value(mpz_t x, struct sexp_iterator *i)
 {
-  if (sexp_iterator_next(i)
-      && i->type == SEXP_ATOM
+  if (i->type == SEXP_ATOM
       && !i->display)
     {
       nettle_mpz_set_str_256(x, i->atom_length, i->atom);
-- 
GitLab