セグメント障害の原因がわかりません。GDB でデバッグしたところ、問題を引き起こしている行が表示されましたが、まだわかりません。
Employee* readfile(FILE* file) {
Employee* newemployee;
char* tempsalary;
int salary;
char* name;
char* dept;
char line[128];
while(file != NULL) {
fgets(name, sizeof(line), file);
newemployee->name = strdup(name); // THIS IS WHERE THE SEGFAULT IS
fgets(dept, sizeof(line), file);
newemployee->department = strdup(dept);
fgets(tempsalary, sizeof(line), file);
sscanf(tempsalary, "%d", &salary);
newemployee->salary = salary;
}
return newemployee;
私が実行しようとしているメイン プログラムは、ファイルを開き、行を読み取り、そこから Employee 構造体を作成することになっています。前の関数を使用して構造体を出力します。
int main() {
FILE* file;
file = fopen ("stest2.txt", "r");
Employee* employees[max_employees];
int i;
int c;
for (i = 0; i < max_employees; i++) {
employees[i] = readfile(file);
printEmployee(employees[i]);
}
}