aboutsummaryrefslogtreecommitdiff
path: root/src/conversation
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/conversation
parent1437556645417e6302862845e7ebcbd4c9908357 (diff)
downloadgnunet-e31c1d4a9f78c4e31fda1f98fe349b33abdd01a2.tar.gz
gnunet-e31c1d4a9f78c4e31fda1f98fe349b33abdd01a2.zip
GNUNET_free_non_null -> GNUNET_free
Diffstat (limited to 'src/conversation')
-rw-r--r--src/conversation/gnunet-conversation.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/conversation/gnunet-conversation.c b/src/conversation/gnunet-conversation.c
index b908cd82c..7a2a727a5 100644
--- a/src/conversation/gnunet-conversation.c
+++ b/src/conversation/gnunet-conversation.c
@@ -359,7 +359,7 @@ start_phone ()
359 else 359 else
360 { 360 {
361 GNUNET_CONVERSATION_phone_get_record (phone, &rd); 361 GNUNET_CONVERSATION_phone_get_record (phone, &rd);
362 GNUNET_free_non_null (address); 362 GNUNET_free (address);
363 address = 363 address =
364 GNUNET_GNSRECORD_value_to_string (rd.record_type, rd.data, rd.data_size); 364 GNUNET_GNSRECORD_value_to_string (rd.record_type, rd.data, rd.data_size);
365 fprintf ( 365 fprintf (
@@ -1035,7 +1035,7 @@ do_stop_task (void *cls)
1035 mic = NULL; 1035 mic = NULL;
1036 GNUNET_free (ego_name); 1036 GNUNET_free (ego_name);
1037 ego_name = NULL; 1037 ego_name = NULL;
1038 GNUNET_free_non_null (peer_name); 1038 GNUNET_free (peer_name);
1039 peer_name = NULL; 1039 peer_name = NULL;
1040 phone_state = PS_ERROR; 1040 phone_state = PS_ERROR;
1041} 1041}