aboutsummaryrefslogtreecommitdiff
path: root/src/gns/gnunet-gns-import.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-07-05 16:32:34 +0200
committerChristian Grothoff <christian@grothoff.org>2020-07-05 16:32:34 +0200
commite31c1d4a9f78c4e31fda1f98fe349b33abdd01a2 (patch)
tree61df772a93f7f21af7c715ddd4b9a3f1a50e0509 /src/gns/gnunet-gns-import.c
parent1437556645417e6302862845e7ebcbd4c9908357 (diff)
downloadgnunet-e31c1d4a9f78c4e31fda1f98fe349b33abdd01a2.tar.gz
gnunet-e31c1d4a9f78c4e31fda1f98fe349b33abdd01a2.zip
GNUNET_free_non_null -> GNUNET_free
Diffstat (limited to 'src/gns/gnunet-gns-import.c')
-rw-r--r--src/gns/gnunet-gns-import.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gns/gnunet-gns-import.c b/src/gns/gnunet-gns-import.c
index 2c7c56411..3c95e782d 100644
--- a/src/gns/gnunet-gns-import.c
+++ b/src/gns/gnunet-gns-import.c
@@ -346,9 +346,9 @@ get_ego (void *cls,
346static void 346static void
347shutdown_task (void *cls) 347shutdown_task (void *cls)
348{ 348{
349 GNUNET_free_non_null (master_zone_pkey); 349 GNUNET_free (master_zone_pkey);
350 master_zone_pkey = NULL; 350 master_zone_pkey = NULL;
351 GNUNET_free_non_null (private_zone_pkey); 351 GNUNET_free (private_zone_pkey);
352 private_zone_pkey = NULL; 352 private_zone_pkey = NULL;
353 if (NULL != list_it) 353 if (NULL != list_it)
354 { 354 {