aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/json/json.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/json/json.c b/src/json/json.c
index 4dabd4d22..51d5c0c72 100644
--- a/src/json/json.c
+++ b/src/json/json.c
@@ -87,7 +87,8 @@ GNUNET_JSON_parse_free (struct GNUNET_JSON_Specification *spec)
87{ 87{
88 for (unsigned int i = 0; NULL != spec[i].parser; i++) 88 for (unsigned int i = 0; NULL != spec[i].parser; i++)
89 if (NULL != spec[i].cleaner) 89 if (NULL != spec[i].cleaner)
90 spec[i].cleaner (spec[i].cls, &spec[i]); 90 spec[i].cleaner (spec[i].cls,
91 &spec[i]);
91} 92}
92 93
93 94