From e8d2100880cd27e098d30833a38f37498350126a Mon Sep 17 00:00:00 2001 From: Jeffrey Altman Date: Tue, 8 Oct 2013 21:32:39 -0500 Subject: [PATCH] libtommath: fix typo in bn_mp_mod.c Change-Id: Ieec5c01d5bd59b9268f41933389b1b32a4c4d0c6 --- lib/hcrypto/libtommath/bn_mp_mod.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/hcrypto/libtommath/bn_mp_mod.c b/lib/hcrypto/libtommath/bn_mp_mod.c index 274e7dcd1..757335aeb 100644 --- a/lib/hcrypto/libtommath/bn_mp_mod.c +++ b/lib/hcrypto/libtommath/bn_mp_mod.c @@ -31,7 +31,7 @@ mp_mod (mp_int * a, mp_int * b, mp_int * c) return res; } - if (mp_iszero(&t) || t.sign == b.sign) { + if (mp_iszero(&t) || t.sign == b->sign) { res = MP_OKAY; mp_exch (&t, c); } else {