was passing unitialized pointer into pthread_join...
This commit is contained in:
parent
8ce9e6127f
commit
c45b384b3b
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue