0

我在一段相当简单的代码上面临一个奇怪的问题。代码的相关部分如下:

void foo(int32 in_sd_id, int32 out_sd_id)
{
    int32 nsds;                     /* number of data sets in the file */
    int32 nattr;                    /* number of global attributes in the file */
    int32 attr_cnt;                 /* count of number of attribute */
    int32 attr_index;               /* attribute index */
    int32 attr_type, attr_size;     /* attribute type and size */
    char attr_name[40];  



    ret = SDfileinfo(in_sd_id, &nsds, &nattr);
    printf("nattr is %d\n", nattr);
    /* test to see if num_datasets and num_global_attr can be retrieved from in_sd_id */
    if (ret == -1)
        {
        fprintf(stdout, "cannot read information from input file \n");
        exit(EXIT_FAILURE);
        }
    else
        {
        /* loop through each global attributes */
        for (attr_index=0; attr_index<nattr; attr_index++)
        {
            printf("attr_index:nattr is %d:%d\n", attr_index, nattr);
            /* test to see if the file or dataset do indeed contain attributes */
            if (SDattrinfo(in_sd_id, attr_index, attr_name, &attr_type, &attr_cnt) == FAIL)
            fprintf(stdout, "Cannot read information for attribute %d\n", attr_index);
            else
            {
                DO SOMETHING 
            }
        }
    }
}

问题出在nattr变量上。比如说nattr应该是11,在for循环中,当我打印 的值时nattr,我得到它11一段时间,但突然它爆炸到一个更大的数字,比如1869501279. nattr在其余代码中,我没有对这个变量做任何其他事情。我有双重和牛肚检查。所以我不知道为什么它突然爆炸了。下面给出了一个示例运行的调试语句:

nattr is 11
attr_index:nattr is 0:11
attr_index:nattr is 1:11
attr_index:nattr is 2:11
attr_index:nattr is 3:11
attr_index:nattr is 4:11
attr_index:nattr is 5:11
attr_index:nattr is 6:11
attr_index:nattr is 7:11
attr_index:nattr is 8:1869501279
attr_index:nattr is 9:1850957672
attr_index:nattr is 10:1850957672
attr_index:nattr is 11:1850957672
Cannot read information for attribute 11
attr_index:nattr is 12:1850957672
Cannot read information for attribute 12
attr_index:nattr is 13:1850957672

关于这里可能发生的事情的任何帮助。谢谢

4

1 回答 1

5

您(非常)可能有缓冲区溢出。我敢打赌,您正在尝试写入attr_name大于39.

但不要只增加attr_name. 您需要了解您在// DO SOMETHING代码中所做的事情。

于 2014-08-27T14:36:22.897 回答