GDB打印命令表明我的数组及其内容格式正确('asdf'
,'\00000'
)但我在qsort
调用中得到了一个段错误,它追溯到比较函数我通过了。我可以猜测的是,我以某种方式传递qsort
一个空指针,或者我的字符串格式不正确,这对我来说似乎并非如此。
/** Word type, used to store elements of the word list,
with room for a word of up to 20 characters. */
typedef char Word[ WORD_MAX + 1 ];
编辑:添加了Word的定义来回答^^
typedef struct {
/** Number of words in the wordlist. */
int len;
/** Capacity of the WordList, so we can know when we need to resize. */
int capacity;
/** List of words. Should be sorted lexicographically once the word list
has been read in. */
Word *words;
} WordList;
readWordList函数接收格式为.txt的.txt文件:
3 the
5 hello
3 foo
...
整数表示后面的字符串中的字符数。 validChar只是一个布尔检查,以查看传入的char是否在某个范围内。我删除了一些与fopen
和一些初始化等问题没有直接关系的代码。
/**
* comparison function for qsort in readWordList
*/
static int cmp(const void *p1, const void *p2){
return strcmp(* (char * const *) p1, * (char * const *) p2);
}
WordList *readWordList( char const *fname ){
//malloc space for newList
WordList *newList = ( WordList * ) malloc( sizeof( WordList ) );
//set capacity to 10
newList->capacity = START_CAPACITY;
...
newList->words = ( Word * ) calloc(newList->capacity, sizeof( Word ) );
...
while( fscanf( toRead, "%d ", &numChars ) == 1 )
{
//realloc space for Word *words if necessary
if(newList->len >= newList->capacity)
{
newList->capacity *= 2;
//check dereferencing
newList->words = (Word *)realloc(newList->words, newList->capacity * sizeof(Word));
}
//if word is longer than 20 chars skip it
if(numChars > WORD_MAX)
continue;
else
{
for(int i = 0; i < numChars; i++)
{
ch = fgetc(toRead);
if(validChar(ch)){
newList->words[newList->len][i] = ch;
if(i == numChars-1){
newList->words[(newList->len)][numChars] = '\0';
}
}else{
continue;
}
}
//debug
printf("%s\n",newList->words[newList->len]);
//increase length of wordlist
newList->len += 1;
}
}
qsort(newList->words, newList->len, sizeof(Word), cmp);
return newList;
}
这是我的valgrind错误:
(wordlist.c:76)引用qsort
电话;
==59199== Invalid read of size 1
==59199== at 0x10000AAC9: _platform_strcmp (in /usr/local/Cellar/valgrind/3.11.0/lib/valgrind/vgpreload_memcheck-amd64-darwin.so)
==59199== by 0x100000C92: cmp (wordlist.c:23)
==59199== by 0x1001F2BDE: _qsort (in /usr/lib/system/libsystem_c.dylib)
==59199== by 0x100000C5E: readWordList (wordlist.c:76)
==59199== by 0x1000007A8: main (pack.c:52)
==59199== Address 0x656874 is not stack'd, malloc'd or (recently) free'd
==59199==
==59199==
==59199== Process terminating with default action of signal 11 (SIGSEGV)
==59199== Access not within mapped region at address 0x656874
==59199== at 0x10000AAC9: _platform_strcmp (in /usr/local/Cellar/valgrind/3.11.0/lib/valgrind/vgpreload_memcheck-amd64-darwin.so)
==59199== by 0x100000C92: cmp (wordlist.c:23)
==59199== by 0x1001F2BDE: _qsort (in /usr/lib/system/libsystem_c.dylib)
==59199== by 0x100000C5E: readWordList (wordlist.c:76)
==59199== by 0x1000007A8: main (pack.c:52)
==59199== If you believe this happened as a result of a stack
==59199== overflow in your program's main thread (unlikely but
==59199== possible), you can try to increase the size of the
==59199== main thread stack using the --main-stacksize= flag.
==59199== The main thread stack size used in this run was 8388608.
答案 0 :(得分:3)
您的代码执行无效转换:qsort
会将指针传递回Word
,但您的cmp
函数会将其视为指向char
指针的const指针。
由于Word
对于typedef
的固定大小数组是char
,因此它与指针指针不同。您应该对Word
中cmp
的指针执行强制转换,而不是指向指针的指针:
static int cmp(const void *p1, const void *p2){
const Word *lhs = p1;
const Word *rhs = p2;
return strcmp((const char*)*lhs, (const char*)*rhs);
}