gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [gnunet] branch master updated: prevent crash on exit


From: gnunet
Subject: [GNUnet-SVN] [gnunet] branch master updated: prevent crash on exit
Date: Tue, 21 Feb 2017 10:38:12 +0100

This is an automated email from the git hooks/post-receive script.

grothoff pushed a commit to branch master
in repository gnunet.

The following commit(s) were added to refs/heads/master by this push:
     new c1d325e47 prevent crash on exit
c1d325e47 is described below

commit c1d325e4700772b36fdaf897295c05e9d3f9211c
Author: Christian Grothoff <address@hidden>
AuthorDate: Tue Feb 21 10:38:09 2017 +0100

    prevent crash on exit
---
 src/core/core_api.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/core/core_api.c b/src/core/core_api.c
index c1cfdb62f..fd789295d 100644
--- a/src/core/core_api.c
+++ b/src/core/core_api.c
@@ -835,7 +835,7 @@ GNUNET_CORE_disconnect (struct GNUNET_CORE_Handle *handle)
     GNUNET_MQ_destroy (handle->mq);
     handle->mq = NULL;
   }
-  GNUNET_free (handle->handlers);
+  GNUNET_free_non_null (handle->handlers);
   GNUNET_free (handle);
 }
 

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

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