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++) {
void * ret;
pthread_join(threads[i], ret);
pthread_join(threads[i], &ret);
}
Tdeinit();
} END_TEST