aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2009-07-16 00:09:56 +0000
committerChristian Grothoff <christian@grothoff.org>2009-07-16 00:09:56 +0000
commite9e07433aaf3093e5900080b4ec896b0bdb1901b (patch)
treead6601b0cd8dd7f4a37816b7ca8fb43566d8609b
parent1b97e16e9ee078e55a22049ecca453375afb4d40 (diff)
downloadgnunet-e9e07433aaf3093e5900080b4ec896b0bdb1901b.tar.gz
gnunet-e9e07433aaf3093e5900080b4ec896b0bdb1901b.zip
leakfix
-rw-r--r--src/util/crypto_rsa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/crypto_rsa.c b/src/util/crypto_rsa.c
index 650df814e..f686c0359 100644
--- a/src/util/crypto_rsa.c
+++ b/src/util/crypto_rsa.c
@@ -725,8 +725,8 @@ GNUNET_CRYPTO_rsa_key_create_from_file (const char *filename)
725 _ 725 _
726 ("File `%s' does not contain a valid private key. You should delete it.\n"), 726 ("File `%s' does not contain a valid private key. You should delete it.\n"),
727 filename); 727 filename);
728 GNUNET_free (enc);
729 } 728 }
729 GNUNET_free (enc);
730#ifndef MINGW 730#ifndef MINGW
731 memset (&fl, 0, sizeof (struct flock)); 731 memset (&fl, 0, sizeof (struct flock));
732 fl.l_type = F_UNLCK; 732 fl.l_type = F_UNLCK;