这段代码的一系列问题中的另一个。我有以下函数,它arg
与字符串数组中的每个字符串进行比较reference
:
char compare(char *arg)
{
int iter=0;
char retchar='0';
while(iter < no_of_ref)
{
// printf("arg : %s , reference : %s \n",arg,reference[iter]);
if((strstr(reference[iter],arg) != NULL) || (strstr(arg,reference[iter]) != NULL))
{
retchar='1';
break;
}
iter++;
}
return retchar;
}
reference
是全局char **
的,但在 main 内部动态构建,如下所示:
reference = calloc(CHUNK, sizeof(char *));
然后是一些代码,然后:
temp_in[pre_pip+1]='\0';
reference[no_of_ref]=malloc(strlen(temp_in) + 1);
strcpy(reference[no_of_ref++],temp_in);
memset(&temp_in,'\0',sizeof(temp_in));
pre_pip = -1;
printf("INDEX: %d, address : %p , val : %s\n",no_of_ref-1,reference[no_of_ref-1],reference[no_of_ref-1]); //DEBUG
}
/*If allocated buffer is at brim, extend it for CHUNK char * further*/
if(no_of_ref == (tr*CHUNK - 2))
{
current_size = tr*CHUNK*sizeof(char *);
char *retalloc = realloc(reference,current_size + CHUNK*sizeof(char *));
if(retalloc == NULL)
perror("ERROR on realloc");
else
{
printf("Realloced successfully: %p\n",retalloc);
tr++;
}
对于不需要出现的测试用例,代码运行良好realloc
,即输入字符串的数量小于CHUNK
. 在 的情况下realloc
,我SEGFAULT
从函数中获取。以下是其中一次运行:
Program terminated with signal 11, Segmentation fault.
#0 __strstr_sse42 (s1=0x3839393433333230 <Address 0x3839393433333230 out of bounds>, s2=0x6020c0 <cmp> "8956549122")