Strcpy()分段错误

时间:2018-04-17 20:32:10

标签: c string strcpy

我创建了一个搜索文件每一行并尝试将参数par_string与文件中的字符串匹配的函数。我有函数的变体用于双精度和整数,但我似乎无法修改函数以从文件中读取字符串。

目前我使用sscanf()读取一行,我目前的工作是使用strcpy()将文件中的字符串复制到函数参数中定义的字符串参数parameter 。但是,一旦我到达strcpy(),我的功能就是分段错误,我无法弄清楚原因。

我希望能够在我的main函数中将函数调用为read_string("FILENAME", filename);,以便能够将参数传递给函数并将文件名返回给变量filename 。我尝试使用

定义filename
char filename[MAXLINE]

char *filename = malloc(sizeof(*filename) * MAXLINE);

但两者都有同样的问题。

以下是我写的功能。我有什么明显的遗失或有更好的方法吗?

谢谢!

int 
read_string(char par_string[], char *parameter)
{
    char line[MAX_LINE], ini_par_name[MAX_LINE], par_separator[MAX_LINE];
    char par_value[MAX_LINE];

    FILE *par_file;

    if ((par_file = fopen(INI_FILE, "r")) == NULL)
    {
        printf("Cannot open parameter file 'plane.ini'.\n");
        exit(-1);
    }

    int linenum = 0;
    parameter = STRING_NO_PAR_CONST;

    while(fgets(line, MAX_LINE, par_file) != NULL)
    {        
        linenum++;

        /* 
        * If the line is a comment, skip that line. Note: There is a bug here
        * which will cause the script to crash if there is a blank line.
        */
        if (line[0] == '#' || line[0] == ' ')
        {
            continue;
        }

        /* 
        * Check a normal line is in the correct format
        */
        if (sscanf(line, "%s %s %s", ini_par_name, par_separator, par_value) \
            != 3)
        {
            printf("Syntax error, line %d for parameter %s\n", linenum,
                par_string);
            exit(-1);
        }

        /* 
        * Use strcmp to compare the difference between two strings. If it's
        * the same parameter, then strcmp will return 0. 
        */
        if (strcmp(par_string, ini_par_name) == 0)
        {
            strcpy(parameter, par_value);
        }
    }

    /* 
    * If parameter wasn't updated, the parameter was not found. Return an
    * error. 
    */
    if (parameter == STRING_NO_PAR_CONST)
    {
        printf("Parameter %s could not be found.\nExiting simulation.\n",
            par_string);
        exit(-1);
    }

    if (fclose(par_file) != 0)
    {
        printf("File could not be closed.\n");
        exit(-1);
    }

    return 0;
}

2 个答案:

答案 0 :(得分:1)

这条线在做什么?

parameter = STRING_NO_PAR_CONST;

如果指定parameter指向字符串文字,这可能是您的问题,则无法修改字符串文字的内容。

如果STRING_NO_PAR_CONST'\0',那只是char,而不是string。只要在调用parameter之前为read_string()正确分配了一些内存,就可以

parameter[0] = STRING_NO_PAR_CONST

并且当你检查它是否已经改变时也一样

if (parameter[0] == STRING_NO_PAR_CONST)

答案 1 :(得分:0)

一些事情

strcpy被称为以下 - > strcpy(目的地,来源)。您正在使用参数作为目的地。

话虽这么说,你分配的空间量应该是你想要的字符串的最大大小。我不认为它应该等于给定文件中的最大行数(虽然我可能是错的)