- coverity bugs
authorMatthias Wachs <wachs@net.in.tum.de>
Wed, 25 Apr 2012 13:03:44 +0000 (13:03 +0000)
committerMatthias Wachs <wachs@net.in.tum.de>
Wed, 25 Apr 2012 13:03:44 +0000 (13:03 +0000)
src/ats/gnunet-service-ats_addresses_mlp.c
src/integration-tests/connection_watchdog.c
src/namestore/gnunet-service-namestore.c
src/transport/plugin_transport_tcp.c

index 043f89770a1308351de15b2dc06d5b28f7d2429a..d4c2c177afc62ce2bb745a0d10446a7500562318 100644 (file)
@@ -593,7 +593,7 @@ mlp_add_constraints_all_addresses (struct GAS_MLP_Handle *mlp, struct GNUNET_CON
     /* Set -r */
     ia[mlp->ci] = peer->r_c9;
     ja[mlp->ci] = mlp->c_r;
-    ar[mlp->ci] = -1;
+    ar[mlp->ci] = -peer->f;
     mlp->ci++;
 #endif
     /* For all addresses of this peer */
index 242322bb6dbe5d6255934e7e2fed63413d14f395..e2d725c6d51461d976235f41ee8f5fa02354866e 100644 (file)
@@ -144,7 +144,7 @@ int map_cleanup_it (void *cls,
                   void *value)
 {
   struct PeerContainer *pc = value;
-  GNUNET_CONTAINER_multihashmap_remove(peers, key, value);
+  GNUNET_assert (GNUNET_OK == GNUNET_CONTAINER_multihashmap_remove(peers, key, value));
   if (NULL != pc->th_ping)
   {
     GNUNET_TRANSPORT_notify_transmit_ready_cancel(pc->th_ping);
@@ -927,7 +927,7 @@ core_disconnect_cb (void *cls,
 {
   if (0 != memcmp (peer, &my_peer_id, sizeof (struct GNUNET_PeerIdentity)))
   {
-    GNUNET_assert (core_connections >= 0);
+    GNUNET_assert (core_connections > 0);
     GNUNET_log (GNUNET_ERROR_TYPE_INFO, "CORE      disconnect for peer `%s' (%u total)\n",
       GNUNET_i2s (peer), core_connections);
     map_disconnect (peer, ch);
index 7fd8d7dc4d715e9ccbce1d01697f652fc935941c..7f782051bbe0cd09d42629bd583c7aea6b3a93e3 100644 (file)
@@ -1480,7 +1480,7 @@ void zone_iteraterate_proc (void *cls,
     proc->rd = NULL;
     proc->name = NULL;
   }
-  else
+  else if ((zone_key != NULL) && (name != NULL)) /* just a safety check */
   {
     rd_filtered = GNUNET_malloc (rd_count * sizeof (struct GNUNET_NAMESTORE_RecordData));
     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received result for zone iteration: `%s'\n", name);
@@ -1568,6 +1568,11 @@ void zone_iteraterate_proc (void *cls,
       }
     }
   }
+  else
+  {
+    GNUNET_break (0);
+    return;
+  }
 
 }
 
index 54bcf16eff72a2b95945fef76cdfaecba4cb2d01..c5682e16a27ee70dc3e15437ad9b252d6576a386 100644 (file)
@@ -1906,6 +1906,7 @@ handle_tcp_data (void *cls, struct GNUNET_SERVER_Client *client,
                      GNUNET_a2s(vaddr, alen));
     GNUNET_break_op (0);
     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
+    GNUNET_free_non_null(vaddr);
     return;
   }
   else if (GNUNET_YES == session->expecting_welcome)
@@ -1921,6 +1922,7 @@ handle_tcp_data (void *cls, struct GNUNET_SERVER_Client *client,
                      GNUNET_a2s(vaddr, alen));
     GNUNET_break_op (0);
     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
+    GNUNET_free_non_null(vaddr);
     return;
   }