aboutsummaryrefslogtreecommitdiff
path: root/src/scalarproduct/gnunet-service-scalarproduct_bob.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/scalarproduct/gnunet-service-scalarproduct_bob.c')
-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