aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-02-21 10:38:09 +0100
committerChristian Grothoff <christian@grothoff.org>2017-02-21 10:38:09 +0100
commitc1d325e4700772b36fdaf897295c05e9d3f9211c (patch)
tree908545b9ad612f9bbde56ac409a28185beb0214e
parent24b8e62f2ed410ad5320f7cd1cace020fbaeb179 (diff)
prevent crash on exit
-rw-r--r--src/core/core_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/core_api.c b/src/core/core_api.c
index c1cfdb62fe..fd789295d1 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);
}