commit 613eaaad5798a134ec2d593432622a8f7f135a5d parent 743ea291bd4cf84ee78adfc1fe0e35cedcff41a9 Author: Christian Grothoff <christian@grothoff.org> Date: Sat, 16 Feb 2019 21:00:38 +0100 fix assertion failure reported in #5578 Diffstat:
| D | contrib/apparmor/gnunet-mesh | | | 13 | ------------- |
| M | src/util/gnunet-service-resolver.c | | | 2 | +- |
2 files changed, 1 insertion(+), 14 deletions(-)
diff --git a/contrib/apparmor/gnunet-mesh b/contrib/apparmor/gnunet-mesh @@ -1,13 +0,0 @@ -# Last Modified: Fri Aug 7 18:02:28 2015 -#include <tunables/global> -#include <tunables/gnunet> - -profile @{GNUNET_PREFIX}/bin/gnunet-mesh { - #include <abstractions/base> - #include <abstractions/gnunet-common> - - @{GNUNET_PREFIX}/bin/gnunet-mesh mr, - - # Site-specific additions and overrides. See local/README for details. - #include <local/gnunet> -} diff --git a/src/util/gnunet-service-resolver.c b/src/util/gnunet-service-resolver.c @@ -1246,7 +1246,7 @@ shutdown_task (void *cls) while (NULL != hosts_head) free_hosts_entry (hosts_head); GNUNET_DNSSTUB_stop (dnsstub_ctx); - GNUNET_free (my_domain); + GNUNET_free_non_null (my_domain); }