我是编码的新手,从哈佛的CS50课程开始。我已经写了一些用于CS50恢复的代码,并尝试运行它,但是出现了分段错误。
需要一些帮助来确定问题所在。
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
typedef uint8_t BYTE;
int main(int argc, char *argv[])
{
if (argc != 2)
{
printf("Usage: ./recover image\n");
return 1;
}
FILE *file = fopen(argv[1], "r");
if (file == NULL)
{
printf("Usage: ./recover image\n");
}
char filename[8];
FILE *img = NULL;
BYTE bytes[512];
int counter = 0;
while (fread(bytes, 512, 1, file) == 1)
{
if(bytes[0] == 0xff && bytes[1] == 0xd8 && bytes[2] == 0xff && (bytes[3] & 0xf0) == 0xe0 )
{
if (counter > 0)
{
fclose(img);
}
sprintf(filename, "%03i.jpg", counter);
img = fopen(filename, "w");
fwrite(bytes, 512, 1, img);
counter++;
}
else
{
fwrite(bytes, 512, 1, img);
}
}
if (img == NULL)
fclose(img);
if (file == NULL)
fclose(file);
return 0;
}
答案 0 :(得分:0)
专注于这一部分。
else
{
fwrite(bytes, 512, 1, img);
}
可以说我正在读取存储卡中的每个512字节,找不到任何jpeg符号。并且代码直接跳到else
语句中。让我们看看那里发生了什么。
fwrite(bytes, 512, 1, img);
此处img为 NULL (即未创建此类img文件),并且fwrite打算在不存在的文件上写入。 am!这是分段错误。如果添加此条件,应该没问题。
else if (img != NULL)
{
// Write the data to a new jpeg file.
fwrite(bytes, 512, 1, img);
}