commit 87f857957cc8b2241afa150830d9822a419ed8c4
parent cdd1091bf11627e91ad9de366a3f8e83a111931c
Author: Christian Grothoff <christian@grothoff.org>
Date: Sun, 17 Apr 2016 12:30:00 +0200
fix assert on exit if there are no auditors
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/backend/taler-merchant-httpd_auditors.c b/src/backend/taler-merchant-httpd_auditors.c
@@ -232,7 +232,7 @@ TMH_AUDITORS_done ()
GNUNET_free (auditors[i].name);
GNUNET_free (auditors[i].uri);
}
- GNUNET_free (auditors);
+ GNUNET_free_non_null (auditors);
auditors = NULL;
nauditors = 0;
}