gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r32667 - gnunet/src/mesh


From: gnunet
Subject: [GNUnet-SVN] r32667 - gnunet/src/mesh
Date: Mon, 17 Mar 2014 12:02:41 +0100

Author: bartpolot
Date: 2014-03-17 12:02:41 +0100 (Mon, 17 Mar 2014)
New Revision: 32667

Modified:
   gnunet/src/mesh/gnunet-mesh-profiler.c
Log:
- NPE

Modified: gnunet/src/mesh/gnunet-mesh-profiler.c
===================================================================
--- gnunet/src/mesh/gnunet-mesh-profiler.c      2014-03-17 11:02:40 UTC (rev 
32666)
+++ gnunet/src/mesh/gnunet-mesh-profiler.c      2014-03-17 11:02:41 UTC (rev 
32667)
@@ -253,7 +253,8 @@
     if (peers[i].up != GNUNET_YES)
       continue;
 
-    GNUNET_MESH_channel_destroy (peers[i].ch);
+    if (NULL != peers[i].ch)
+      GNUNET_MESH_channel_destroy (peers[i].ch);
     if (NULL != peers[i].incoming_ch)
       GNUNET_MESH_channel_destroy (peers[i].incoming_ch);
   }




reply via email to

[Prev in Thread] Current Thread [Next in Thread]