pthread ポインターの配列を動的に割り当てようとしていますが、次の glibc エラーが発生します。
*** glibc detected *** ./test: realloc(): invalid next size: 0x00000000084d2010 ***
コード:
#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
int main(int argc, char** argv) {
pthread_t **threads;
int i;
for(i=1;i<100;i++) {
threads = realloc(threads, sizeof(pthread_t*)*i);
threads[i] = malloc(sizeof(pthread_t));
}
return EXIT_SUCCESS;
}
ここで何が間違っていますか?