removed a couple of excess variable declarations
authorChristian Fuchs <christian.fuchs@cfuchs.net>
Tue, 8 Oct 2013 13:02:46 +0000 (13:02 +0000)
committerChristian Fuchs <christian.fuchs@cfuchs.net>
Tue, 8 Oct 2013 13:02:46 +0000 (13:02 +0000)
src/scalarproduct/gnunet-service-scalarproduct.c

index 6067833c3a2c572a9010a0f2d29dd5864a13e3a0..6f6ace6d5599e093e609175e4cfcac8f51e13d56 100644 (file)
@@ -1894,17 +1894,13 @@ handle_service_request_multipart (void *cls,
 {
   struct ServiceSession * session;
   const struct GNUNET_SCALARPRODUCT_multipart_message * msg = (const struct GNUNET_SCALARPRODUCT_multipart_message *) message;
-  uint32_t mask_length;
-  uint32_t pk_length;
   uint32_t used_elements;
   uint32_t contained_elements;
-  uint32_t element_count;
   uint32_t msg_length;
   unsigned char * current;
   struct ServiceSession * responder_session;
   int32_t i = -1;
-  enum SessionState needed_state;
-  
   // are we in the correct state?
   session = (struct ServiceSession *) * tunnel_ctx;
   if (BOB != session->role) {