diff options
author | Christian Grothoff <christian@grothoff.org> | 2017-02-21 10:38:09 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2017-02-21 10:38:09 +0100 |
commit | c1d325e4700772b36fdaf897295c05e9d3f9211c (patch) | |
tree | 908545b9ad612f9bbde56ac409a28185beb0214e | |
parent | 24b8e62f2ed410ad5320f7cd1cace020fbaeb179 (diff) |
prevent crash on exit
-rw-r--r-- | src/core/core_api.c | 2 |
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); } |