aboutsummaryrefslogtreecommitdiff
path: root/src/testbed/testbed_api.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/testbed/testbed_api.c
parent1437556645417e6302862845e7ebcbd4c9908357 (diff)
downloadgnunet-e31c1d4a9f78c4e31fda1f98fe349b33abdd01a2.tar.gz
gnunet-e31c1d4a9f78c4e31fda1f98fe349b33abdd01a2.zip
GNUNET_free_non_null -> GNUNET_free
Diffstat (limited to 'src/testbed/testbed_api.c')
-rw-r--r--src/testbed/testbed_api.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/testbed/testbed_api.c b/src/testbed/testbed_api.c
index 9fe5bccdc..697783d96 100644
--- a/src/testbed/testbed_api.c
+++ b/src/testbed/testbed_api.c
@@ -1178,7 +1178,7 @@ handle_link_controllers_result (
1178 LOG_DEBUG ("Not calling callback\n"); 1178 LOG_DEBUG ("Not calling callback\n");
1179 if (NULL != cfg) 1179 if (NULL != cfg)
1180 GNUNET_CONFIGURATION_destroy (cfg); 1180 GNUNET_CONFIGURATION_destroy (cfg);
1181 GNUNET_free_non_null (emsg); 1181 GNUNET_free (emsg);
1182} 1182}
1183 1183
1184 1184
@@ -1314,7 +1314,7 @@ handle_barrier_status (void *cls,
1314 return; /* just initialised; skip cleanup */ 1314 return; /* just initialised; skip cleanup */
1315 1315
1316cleanup: 1316cleanup:
1317 GNUNET_free_non_null (emsg); 1317 GNUNET_free (emsg);
1318 /** 1318 /**
1319 * Do not remove the barrier if we did not echo the status back; this is 1319 * Do not remove the barrier if we did not echo the status back; this is
1320 * required at the chained testbed controller setup to ensure the only the 1320 * required at the chained testbed controller setup to ensure the only the
@@ -1459,7 +1459,7 @@ oprelease_link_controllers (void *cls)
1459 case OPC_STATE_FINISHED: 1459 case OPC_STATE_FINISHED:
1460 break; 1460 break;
1461 } 1461 }
1462 GNUNET_free_non_null (data); 1462 GNUNET_free (data);
1463 GNUNET_free (opc); 1463 GNUNET_free (opc);
1464} 1464}
1465 1465