我有以下结构:
strcut records
{
char **lines;
int count;
}
有一个函数get_pwent()
,其相关代码如下:
struct records *passwd = malloc(sizeof(strcut records));
passwd->lines = malloc(sizeof(char *) * MAX_STR_SIZE);
通过一些malloc错误检查(passwd
不为空,passwd->lines
不为空),它被传递给我的parse_file()
:
parse_file(struct records *record, FILE * in)
{
int i = 0;
... // a while loop
fgets((*record).lines[i], MAX_STR_SIZE, in); // <-- Segment fault here
i++;
... // end while
}
该文件是/etc/passwd,我想读取该文件的第一行,并将其存储在struct records lines[I]位置。
我也试过这个:
fgets(record->lines[i], ...) //which also gets a seg fault.
在GDB中,在parse_file()
范围下:
(gdb) p record
$1 = {struct records *} 0x602250
如何修复此错误?
您需要为每一行分配内存,然后才能将数据复制到其中:
record->line[i] = malloc(MAX_STR_SIZE+1); // allocate memory first.
fgets((*record).lines[i], MAX_STR_SIZE, in); // <-- Segment fault here
您缺少一个分配步骤;对于每个passwd->lines[i]
,您需要进行另一个分配:
// Allocate space for array of pointers
passwd->lines = malloc( sizeof *passwd->lines * max_number_of_strings );
for ( size_t i = 0; i < max_number_of_strings; i++ )
{
// Allocate space for each string
passwd->lines[i] = malloc( sizeof *passwd->lines[i] * max_string_length );
}