aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-08-21 15:34:37 +0000
committerChristian Grothoff <christian@grothoff.org>2013-08-21 15:34:37 +0000
commit710d9f0dfefeb951781849832bf45d0875038af9 (patch)
treed237dfaec3062a8897ea2307916d19bf1e7553b2
parent2a2fac4e309e06adcc2feb99e20a8ae67a661da3 (diff)
downloadgnunet-gtk-710d9f0dfefeb951781849832bf45d0875038af9.tar.gz
gnunet-gtk-710d9f0dfefeb951781849832bf45d0875038af9.zip
removing GNUNET_CRYPTO_ecc_key_free, use GNUNET_free directly instead
-rw-r--r--src/setup/gnunet-setup-gns.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/setup/gnunet-setup-gns.c b/src/setup/gnunet-setup-gns.c
index 1c37036a..eb7aa67e 100644
--- a/src/setup/gnunet-setup-gns.c
+++ b/src/setup/gnunet-setup-gns.c
@@ -777,7 +777,7 @@ merge_with_existing_records (void *cls,
777 { 777 {
778 show_error_message (_("Record combination not permitted"), 778 show_error_message (_("Record combination not permitted"),
779 _("Given the existing records, adding a new record of this type is not allowed.")); 779 _("Given the existing records, adding a new record of this type is not allowed."));
780 GNUNET_CRYPTO_ecc_key_free (moc->pk); 780 GNUNET_free (moc->pk);
781 GNUNET_free (moc->data); 781 GNUNET_free (moc->data);
782 GNUNET_free (moc); 782 GNUNET_free (moc);
783 free_edit_dialog_context (edc); 783 free_edit_dialog_context (edc);
@@ -795,7 +795,7 @@ merge_with_existing_records (void *cls,
795 rd_count + 1, 795 rd_count + 1,
796 rd_new, 796 rd_new,
797 &operation_done_cont, oc); 797 &operation_done_cont, oc);
798 GNUNET_CRYPTO_ecc_key_free (moc->pk); 798 GNUNET_free (moc->pk);
799 GNUNET_free (moc->data); 799 GNUNET_free (moc->data);
800 GNUNET_free (moc); 800 GNUNET_free (moc);
801 free_edit_dialog_context (edc); 801 free_edit_dialog_context (edc);
@@ -827,7 +827,7 @@ decrypt_block_for_merge (void *cls,
827 { 827 {
828 show_error_message (_("Failed to decode existing record in target zone"), 828 show_error_message (_("Failed to decode existing record in target zone"),
829 _("Failed to add new record.")); 829 _("Failed to add new record."));
830 GNUNET_CRYPTO_ecc_key_free (moc->pk); 830 GNUNET_free (moc->pk);
831 GNUNET_free (moc->data); 831 GNUNET_free (moc->data);
832 free_edit_dialog_context (moc->edc); 832 free_edit_dialog_context (moc->edc);
833 GNUNET_free (moc); 833 GNUNET_free (moc);
@@ -2090,7 +2090,7 @@ GNUNET_SETUP_gns_done ()
2090 _("A pending namestore operation was not transmitted to the namestore.\n")); 2090 _("A pending namestore operation was not transmitted to the namestore.\n"));
2091 GNUNET_CONTAINER_DLL_remove (moc_head, moc_tail, moc); 2091 GNUNET_CONTAINER_DLL_remove (moc_head, moc_tail, moc);
2092 GNUNET_NAMESTORE_cancel (moc->qe); 2092 GNUNET_NAMESTORE_cancel (moc->qe);
2093 GNUNET_CRYPTO_ecc_key_free (moc->pk); 2093 GNUNET_free (moc->pk);
2094 free_edit_dialog_context (moc->edc); 2094 free_edit_dialog_context (moc->edc);
2095 GNUNET_free (moc->data); 2095 GNUNET_free (moc->data);
2096 GNUNET_free (moc); 2096 GNUNET_free (moc);
@@ -2111,7 +2111,7 @@ GNUNET_SETUP_gns_done ()
2111 } 2111 }
2112 if (NULL != pkey) 2112 if (NULL != pkey)
2113 { 2113 {
2114 GNUNET_CRYPTO_ecc_key_free (pkey); 2114 GNUNET_free (pkey);
2115 pkey = NULL; 2115 pkey = NULL;
2116 } 2116 }
2117 if (NULL != current_pseudonym) 2117 if (NULL != current_pseudonym)