从 ID3V1 标签读取轨道时出错

Error Reading Track from ID3V1 Tag

我目前正在尝试从 C 语言的 ID3V1.1 标签中读取信息。对于这个项目,我们不允许使用任何外部库。除轨道字段外的所有字段都正确读取。最后两行给我带来了麻烦。每当我 运行 程序时,当它试图获取轨道号时,我都会遇到段错误。我尝试使用 gdb 进行调试,它说问题发生在 fseek 所在的第 34 行。它适用于其他领域,所以我想知道为什么会出错。我应该将偏移量更改为 -128 以外的值吗?但是整个标签只有 128 个字符,所以我不确定出了什么问题。

#include <stdio.h>
#include <string.h>

struct Tag
{
        char tag[3];
        char song_title[30];
        char artist[30];
        char album[30];
        char year[4];
        char comment[28];
        char seperator;
        char track;
        char genre;
};

int main (int argc, char *argv[])
{
        struct Tag file_tag;
        FILE *fp;
        char title[31];
        char artist[31];
        char album[31];
        char year[5];
        char comment[29];
        char track[2];
        int track_number;

        fp = fopen(argv[1],"r+b");
        if (!fp)
        {
                printf("File does not exist");
        }
    fseek(fp, -128, SEEK_END);
        fread(&file_tag,sizeof(file_tag),1,fp);
        fclose(fp);
        if(strncmp(file_tag.tag,"TAG",3)!=0)
        {
                printf("ID3 tag is not present\n");
        }
    else
    {
                strncpy(title, file_tag.song_title,30);
                title[31]='[=10=]';
                printf("Title: %s\n",title);
                strncpy(artist, file_tag.artist,30);
                artist[31]='[=10=]';
                printf("Artist: %s\n",artist);

                strncpy(album, file_tag.album,30);
                album[31]='[=10=]';
                printf("Album: %s\n",album);

                strncpy(year, file_tag.year,4);
                year[4]='[=10=]';
                printf("Year: %s\n",year);
                //printf("Year: %.4s\n",file_tag.year);

                strncpy(comment, file_tag.comment,28);
                comment[29]='[=10=]';
                printf("Comment: %s\n",comment);
                //these lines cause the seg fault
                track_number = atoi(file_tag.track);
                printf("Track: %d\n",track_number);

        }
    return 0;
}

这里是 segFault 的完整信息:

Program received signal SIGSEGV, Segmentation fault.
0x00000034ff66edf1 in fseek () from /lib64/libc.so.6
Missing separate debuginfos, use: debuginfo-install glibc-2.12-1.132.el6_5.3.x86_64
(gdb) back
#0  0x00000034ff66edf1 in fseek () from /lib64/libc.so.6
#1  0x000000000040076f in main (argc=1, argv=0x7fffffffdf58) at id3tagEd.c:34

我觉得有点太晚了,但如果有人有同样的问题,当你做 fread 时,你给它的大小是 file_tag 而不是标签。我改变了它,它起作用了。