was passing unitialized pointer into pthread_join...

This commit is contained in:
Sears Russell 2006-05-25 22:49:19 +00:00
parent 8ce9e6127f
commit c45b384b3b

View file

@ -259,7 +259,7 @@ START_TEST(linearHashNTAThreadedTest) {
} }
for(i = 0; i < NUM_THREADS; i++) { for(i = 0; i < NUM_THREADS; i++) {
void * ret; void * ret;
pthread_join(threads[i], ret); pthread_join(threads[i], &ret);
} }
Tdeinit(); Tdeinit();
} END_TEST } END_TEST