summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/third_party/fiat/p256.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/third_party/fiat/p256.c b/src/third_party/fiat/p256.c
index f1d53165..2fe2f867 100644
--- a/src/third_party/fiat/p256.c
+++ b/src/third_party/fiat/p256.c
@@ -1120,7 +1120,7 @@ static void point_add(fe x3, fe y3, fe z3, const fe x1,
limb_t yneq = fe_nz(r);
if (!xneq && !yneq && z1nz && z2nz) {
- point_double(x_out, y_out, z_out, x1, y1, z1);
+ point_double(x3, y3, z3, x1, y1, z1);
return;
}