From aa5b1ac2cc576e87a0552dc3384eede06c880550 Mon Sep 17 00:00:00 2001 From: Mirek Kratochvil Date: Thu, 25 Oct 2012 20:06:05 +0200 Subject: [PATCH] tiny sanity fix --- lib/mce_qd.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/mce_qd.cpp b/lib/mce_qd.cpp index b0a1a9f..4712b79 100644 --- a/lib/mce_qd.cpp +++ b/lib/mce_qd.cpp @@ -318,14 +318,15 @@ int mce_qd::generate (pubkey&pub, privkey&priv, prng&rng, (hblocks[i][j], block_size * j); } - //finish the pubkey - pub.T = T; break; } if (attempts == block_count) //generating G failed, retry all continue; + //finish the pubkey + pub.T = T; + return 0; } }