Merge "Add a call to pthread_attr_destroy to avoid potential memory leaks."

This commit is contained in:
Jeff Brown 2011-07-14 22:31:27 -07:00 committed by Android (Google) Code Review
commit ce071667d0

View File

@ -161,6 +161,7 @@ int androidCreateRawThreadEtc(android_thread_func_t entryFunction,
pthread_t thread;
int result = pthread_create(&thread, &attr,
(android_pthread_entry)entryFunction, userData);
pthread_attr_destroy(&attr);
if (result != 0) {
LOGE("androidCreateRawThreadEtc failed (entry=%p, res=%d, errno=%d)\n"
"(android threadPriority=%d)",