gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r17404 - gnunet/src/core


From: gnunet
Subject: [GNUnet-SVN] r17404 - gnunet/src/core
Date: Wed, 12 Oct 2011 14:01:25 +0200

Author: grothoff
Date: 2011-10-12 14:01:24 +0200 (Wed, 12 Oct 2011)
New Revision: 17404

Modified:
   gnunet/src/core/gnunet-service-core_clients.c
Log:
checknull

Modified: gnunet/src/core/gnunet-service-core_clients.c
===================================================================
--- gnunet/src/core/gnunet-service-core_clients.c       2011-10-12 11:55:38 UTC 
(rev 17403)
+++ gnunet/src/core/gnunet-service-core_clients.c       2011-10-12 12:01:24 UTC 
(rev 17404)
@@ -813,8 +813,11 @@
 
   while (NULL != (c = client_head))  
     handle_client_disconnect (NULL, c->client_handle);
-  GNUNET_SERVER_notification_context_destroy (notifier);
-  notifier = NULL;
+  if (NULL != notifier)
+  {
+    GNUNET_SERVER_notification_context_destroy (notifier);
+    notifier = NULL;
+  }
   GNUNET_SERVER_mst_destroy (client_mst);
   client_mst = NULL;
 }




reply via email to

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