aboutsummaryrefslogtreecommitdiff
path: root/src/scalarproduct
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-09-05 12:37:44 +0000
committerChristian Grothoff <christian@grothoff.org>2015-09-05 12:37:44 +0000
commitf5c6fcbd2e1257460e07eaf4b102491f66af7cf1 (patch)
tree9cb13db19dea12b5a77e45678cfaeefa6bbfac61 /src/scalarproduct
parent110973ebdd4f267cbaca4f793dae6c2ff325eeb9 (diff)
downloadgnunet-f5c6fcbd2e1257460e07eaf4b102491f66af7cf1.tar.gz
gnunet-f5c6fcbd2e1257460e07eaf4b102491f66af7cf1.zip
-dead
Diffstat (limited to 'src/scalarproduct')
-rw-r--r--src/scalarproduct/gnunet-service-scalarproduct_bob.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/scalarproduct/gnunet-service-scalarproduct_bob.c b/src/scalarproduct/gnunet-service-scalarproduct_bob.c
index d08f5b858..25a74386a 100644
--- a/src/scalarproduct/gnunet-service-scalarproduct_bob.c
+++ b/src/scalarproduct/gnunet-service-scalarproduct_bob.c
@@ -140,11 +140,6 @@ struct BobServiceSession
140 struct CadetIncomingSession *cadet; 140 struct CadetIncomingSession *cadet;
141 141
142 /** 142 /**
143 * The computed scalar
144 */
145 gcry_mpi_t product;
146
147 /**
148 * How many elements will be supplied in total from the client. 143 * How many elements will be supplied in total from the client.
149 */ 144 */
150 uint32_t total; 145 uint32_t total;
@@ -408,11 +403,6 @@ destroy_service_session (struct BobServiceSession *s)
408 GNUNET_free (s->r_prime); 403 GNUNET_free (s->r_prime);
409 s->r_prime = NULL; 404 s->r_prime = NULL;
410 } 405 }
411 if (NULL != s->product)
412 {
413 gcry_mpi_release (s->product);
414 s->product = NULL;
415 }
416 GNUNET_free (s); 406 GNUNET_free (s);
417} 407}
418 408