aboutsummaryrefslogtreecommitdiff
path: root/src/topology
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-10-06 21:17:56 +0200
committerChristian Grothoff <christian@grothoff.org>2017-10-06 21:17:56 +0200
commit79ddc4888a3003ddbe45f1552dac3fea5e0741d4 (patch)
treef482ac496d9cf27c5c874bce37207514c4d8079e /src/topology
parent954500e2e8aab9f87a497fd12bad018bd9703628 (diff)
downloadgnunet-79ddc4888a3003ddbe45f1552dac3fea5e0741d4.tar.gz
gnunet-79ddc4888a3003ddbe45f1552dac3fea5e0741d4.zip
fix leak
Diffstat (limited to 'src/topology')
-rw-r--r--src/topology/friends.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/topology/friends.c b/src/topology/friends.c
index a960fad17..65f2700bb 100644
--- a/src/topology/friends.c
+++ b/src/topology/friends.c
@@ -95,7 +95,7 @@ GNUNET_FRIENDS_parse (const struct GNUNET_CONFIGURATION_Handle *cfg,
95 pos = 0; 95 pos = 0;
96 while (pos < fsize) 96 while (pos < fsize)
97 { 97 {
98 while ((pos < fsize) && (! isspace ((int) data[pos]))) 98 while ((pos < fsize) && (! isspace ((unsigned char) data[pos])))
99 pos++; 99 pos++;
100 if (GNUNET_OK != 100 if (GNUNET_OK !=
101 GNUNET_CRYPTO_eddsa_public_key_from_string (&data[start], 101 GNUNET_CRYPTO_eddsa_public_key_from_string (&data[start],