2

我正在尝试从 C 中创建与 libpq 的数据库连接。如果我使用 PQconnectdb 创建该连接,一切正常,但如果我使用 PQconnectdbParams 函数创建它,仅使用以不同方式存储的相同参数(请参阅libpq 参考为此),我得到一个分段错误错误,没有任何其他消息。有人可以帮我解决这个问题吗?

你可以在下面看到我的代码:


int main(int argc, char *argv[]) {
        char **keywords;
        char **values;
        char *line = malloc(50);
        char *prop, *tmp, *val;
        int i = 0, j = 0;
        FILE *creds = fopen("/path/to/file.props", "r");
        if (creds == NULL) {
           LOG("%s", "error: cannot open credentials file.\n");
           exit(1);
        }

        keywords = malloc(5 * sizeof(*keywords));
        values = malloc(5 * sizeof(*values));
        while (fgets(line, LINE_SIZE, creds) != NULL) {
                if (line[strlen(line) - 1] == '\n')
                        line[strlen(line) - 1] = '\0';
                prop = line;
                while(*(prop++) != '=') {
                        i++;
                }
                tmp = prop;
                prop = malloc(i + 1);
                strncpy(prop, line, i);
                prop[i] = '\0';
                keywords[j] = prop;
                val = malloc(strlen(line) - strlen(prop) + 1);
                strcpy(val, tmp);
                values[j++] = val;
                i = 0;
        }
printf("%s %s %s %s %s\n", keywords[0], keywords[1], keywords[2], keywords[3], keywords[4]); //that lines prints ok
printf("%s %s %s %s %s\n", values[0], values[1], values[2], values[3], values[4]); //
        PGconn *conn = PQconnectdbParams(keywords, values, 0);

        if (PQstatus(conn) != CONNECTION_OK) {

                fprintf(stderr, "Connection to database failed: %s", PQerrorMessage(conn));
                PQfinish(conn);
                exit(1);

        }
}
4

1 回答 1

5

的文档PQconnectdbParams说:

此函数使用取自两个以 NULL 结尾的数组的参数打开一个新的数据库连接。

keywords但是在您的代码中, andvalues数组看起来不是以NULL 结尾的。它为 5 个参数分配 5 个指针,但它应该为 5 个参数分配 6 个指针加上一个 NULL 指针。

于 2013-02-23T11:26:04.167 回答