aboutsummaryrefslogtreecommitdiff
path: root/src/fs/fs_uri.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-08-21 15:34:18 +0000
committerChristian Grothoff <christian@grothoff.org>2013-08-21 15:34:18 +0000
commit65e91346db9fe4ca1b1ff6516872454c468eb7f2 (patch)
tree4228cfb2c3b628f6dd011f8b73075ecb86343217 /src/fs/fs_uri.c
parent47386fdbe2b5945fc2c319ef6899e3b67157d04f (diff)
downloadgnunet-65e91346db9fe4ca1b1ff6516872454c468eb7f2.tar.gz
gnunet-65e91346db9fe4ca1b1ff6516872454c468eb7f2.zip
removing GNUNET_CRYPTO_ecc_key_free, use GNUNET_free directly instead
Diffstat (limited to 'src/fs/fs_uri.c')
-rw-r--r--src/fs/fs_uri.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fs/fs_uri.c b/src/fs/fs_uri.c
index 72704828d..e35287bef 100644
--- a/src/fs/fs_uri.c
+++ b/src/fs/fs_uri.c
@@ -936,7 +936,7 @@ GNUNET_FS_uri_loc_create (const struct GNUNET_FS_Uri *baseUri,
936 GNUNET_assert (GNUNET_OK == 936 GNUNET_assert (GNUNET_OK ==
937 GNUNET_CRYPTO_ecc_sign (my_private_key, &ass.purpose, 937 GNUNET_CRYPTO_ecc_sign (my_private_key, &ass.purpose,
938 &uri->data.loc.contentSignature)); 938 &uri->data.loc.contentSignature));
939 GNUNET_CRYPTO_ecc_key_free (my_private_key); 939 GNUNET_free (my_private_key);
940 return uri; 940 return uri;
941} 941}
942 942