summaryrefslogtreecommitdiffstats
path: root/libtommath/bn_mp_xor.c
diff options
context:
space:
mode:
Diffstat (limited to 'libtommath/bn_mp_xor.c')
-rw-r--r--libtommath/bn_mp_xor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libtommath/bn_mp_xor.c b/libtommath/bn_mp_xor.c
index 192aacc..de7e62c 100644
--- a/libtommath/bn_mp_xor.c
+++ b/libtommath/bn_mp_xor.c
@@ -37,7 +37,7 @@ mp_xor (mp_int * a, mp_int * b, mp_int * c)
}
for (ix = 0; ix < px; ix++) {
-
+ t.dp[ix] ^= x->dp[ix];
}
mp_clamp (&t);
mp_exch (c, &t);