gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r28759 - gnunet-gtk/src/setup


From: gnunet
Subject: [GNUnet-SVN] r28759 - gnunet-gtk/src/setup
Date: Wed, 21 Aug 2013 17:34:38 +0200

Author: grothoff
Date: 2013-08-21 17:34:37 +0200 (Wed, 21 Aug 2013)
New Revision: 28759

Modified:
   gnunet-gtk/src/setup/gnunet-setup-gns.c
Log:
removing GNUNET_CRYPTO_ecc_key_free, use GNUNET_free directly instead

Modified: gnunet-gtk/src/setup/gnunet-setup-gns.c
===================================================================
--- gnunet-gtk/src/setup/gnunet-setup-gns.c     2013-08-21 15:34:18 UTC (rev 
28758)
+++ gnunet-gtk/src/setup/gnunet-setup-gns.c     2013-08-21 15:34:37 UTC (rev 
28759)
@@ -777,7 +777,7 @@
   {
     show_error_message (_("Record combination not permitted"),
                        _("Given the existing records, adding a new record of 
this type is not allowed."));
-    GNUNET_CRYPTO_ecc_key_free (moc->pk);
+    GNUNET_free (moc->pk);
     GNUNET_free (moc->data);
     GNUNET_free (moc);
     free_edit_dialog_context (edc);
@@ -795,7 +795,7 @@
                                           rd_count + 1,
                                           rd_new,
                                           &operation_done_cont, oc);
-  GNUNET_CRYPTO_ecc_key_free (moc->pk);
+  GNUNET_free (moc->pk);
   GNUNET_free (moc->data);
   GNUNET_free (moc);
   free_edit_dialog_context (edc);
@@ -827,7 +827,7 @@
   {
     show_error_message (_("Failed to decode existing record in target zone"),
                        _("Failed to add new record."));
-    GNUNET_CRYPTO_ecc_key_free (moc->pk);
+    GNUNET_free (moc->pk);
     GNUNET_free (moc->data);
     free_edit_dialog_context (moc->edc);
     GNUNET_free (moc);
@@ -2090,7 +2090,7 @@
                _("A pending namestore operation was not transmitted to the 
namestore.\n"));
     GNUNET_CONTAINER_DLL_remove (moc_head, moc_tail, moc);
     GNUNET_NAMESTORE_cancel (moc->qe);
-    GNUNET_CRYPTO_ecc_key_free (moc->pk);
+    GNUNET_free (moc->pk);
     free_edit_dialog_context (moc->edc);
     GNUNET_free (moc->data);
     GNUNET_free (moc);
@@ -2111,7 +2111,7 @@
   }
   if (NULL != pkey)
   {
-    GNUNET_CRYPTO_ecc_key_free (pkey);
+    GNUNET_free (pkey);
     pkey = NULL;
   }
   if (NULL != current_pseudonym)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]