Subject: [PATCH] Fix quota compliance tests. --- src/transport/test_quota_compliance.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/transport/test_quota_compliance.c b/src/transport/test_quota_compliance.c index 73b773b88..211e64e32 100644 --- a/src/transport/test_quota_compliance.c +++ b/src/transport/test_quota_compliance.c @@ -305,11 +305,11 @@ main (int argc, } for (unsigned int i=0;i<2;i++) { - if ( (NULL != gen_cfgs[0]) && - (GNUNET_YES == GNUNET_DISK_file_test (gen_cfgs[0])) ) + if ( (NULL != gen_cfgs[i]) && + (GNUNET_YES == GNUNET_DISK_file_test (gen_cfgs[i])) ) { - GNUNET_DISK_directory_remove (gen_cfgs[0]); - GNUNET_free (gen_cfgs[0]); + GNUNET_DISK_directory_remove (gen_cfgs[i]); + GNUNET_free (gen_cfgs[i]); } } return 0; -- 2.13.1