From f3c4db4f30731f6cfc2c37a39d5ce3501d42f45e Mon Sep 17 00:00:00 2001 From: Martin Szulecki Date: Fri, 26 Dec 2014 12:23:52 +0100 Subject: thread: Introduce thread_new and thread_free to cover handle leaks on WIN32 --- dev/afccheck.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'dev') diff --git a/dev/afccheck.c b/dev/afccheck.c index 3eb53c8..c534000 100644 --- a/dev/afccheck.c +++ b/dev/afccheck.c @@ -132,11 +132,12 @@ int main(int argc, char *argv[]) for (i = 0; i < NB_THREADS; i++) { data[i].afc = afc; data[i].id = i + 1; - thread_create(&threads[i], check_afc, data + i); + thread_new(&threads[i], check_afc, data + i); } for (i = 0; i < NB_THREADS; i++) { thread_join(threads[i]); + thread_free(threads[i]); } lockdownd_client_free(client); -- cgit v1.1-32-gdbae