Skip to content

Commit c94688b

Browse files
committed
Do not forget to call pthread_attr_destroy() after we have initialized the
thread attributes with pthread_attr_init().
1 parent 37aed82 commit c94688b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

threads.c

+1
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ threads_create(struct threads *tds, void *(*start)(void *), void *data)
113113
pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
114114
threads_lock(tds);
115115
error = pthread_create(&td->thread, &attr, thread_start, td);
116+
pthread_attr_destroy(&attr);
116117
if (error)
117118
err(1, "pthread_create");
118119
LIST_INSERT_HEAD(&tds->threads_running, td, runlist);

0 commit comments

Comments
 (0)