2つのdouble変数にメモリを割り当てる関数を作成しました。必要なメモリサイズが小さい場合は機能しますが、必要なメモリが比較的大きくなるとセグメンテーション違反が発生します。書かれたコードにエラーや悪い習慣はありますか?
void RDF_MALLOC(void** p, size_t sz){
*p = malloc(sz);
if (*p == NULL){
RDF_LOG(kERROR, "Insufficient memory.\n");
} else {
memset(*p, 0x00, sz);
}
}
void RDF_FREE(void* p){
if (p != NULL){
free(p);
p = NULL;
} else {
RDF_LOG(kERROR, "Fail to free memory.\n");
}
}
void calcErr(){
int PTCORE_MAX_SESSION_NODE = 1800;
double* sum_least_square_err = NULL;
double* node_sum_least_square_err = NULL;
RDF_MALLOC((void**)&sum_least_square_err, PTCORE_MAX_SESSION_NODE*PTCORE_MAX_SESSION_NODE);
RDF_MALLOC((void**)&node_sum_least_square_err, PTCORE_MAX_SESSION_NODE);
/* run qsort to sort content in sum_least_square_err , and node_sum_least_square_err...*/
RDF_FREE(sum_least_square_err);
RDF_FREE(node_sum_least_square_err);
}
2種類のランタイムエラーが発生します。mallocが失敗したか、free()..のときに無効なポインターです。
エラー1:
`malloc.c:3096: sYSMALLOc: Assertion `(old_top == (((mbinptr) (((char *) &((av)->bins[((1) - 1) * 2])) - __builtin_offsetof (struct malloc_chunk, fd)))) && old_size == 0) || ((unsigned long) (old_size) >= (unsigned long)((((__builtin_offsetof (struct malloc_chunk, fd_nextsize))+((2 * (sizeof(size_t))) - 1)) & ~((2 * (sizeof(size_t))) - 1))) && ((old_top)->size & 0x1) && ((unsigned long)old_end & pagemask) == 0)' failed.`
エラー2:
*** glibc detected *** ./pt: free(): invalid pointer: 0x0b302ba8 ***