0

我正在使用结构作为链接列表,但由于最近的一次更改(我忘记检查 git 存储库,所以我不记得是哪个更改)我在 head 元素中的一个结构变量正在改变。在执行下面显示的代码时,post->filename 得到了一个有效的字符串,但是在离开方法之后,head_post->filename(应该指向完全相同的值)添加了一些垃圾。字符串“20130804-0638.md”变为“20130804-0638.md�:\020”。

知道我想念什么吗?

结构:

struct posting {
    char *filename;
    char  timestamp[17];
    char *url;
    char *title;
    char *html;
    struct posting *next;
};
struct posting *head_post = NULL;

代码:

struct posting *post;
...
while ((ep = readdir(dp))) {
  if (ep->d_name[0] != '.' && strstr(ep->d_name, ".md") && strlen(ep->d_name) == 16) {
    if (head_post == NULL) {
      head_post = malloc(sizeof(struct posting));
      post = head_post;
    } else {
      post = head_post;
      while (post->next != NULL)
        post = post->next;
      post->next = malloc(sizeof(struct posting));
      post = post->next;
    }

    post->filename = malloc(sizeof(char) * strlen(ep->d_name));
    strcpy(post->filename, ep->d_name);
    post->next = NULL;
  }
}
4

1 回答 1

2

'\0'我认为您在为 分配内存时也需要计算在内filename,因为strlen()不计算在内。

... 
//                                           ------------- +1 for '\0'
post->filename = malloc(sizeof(char) * (strlen(ep->d_name) +1 ));
strcpy(post->filename, ep->d_name);
post->next = NULL;
...
于 2013-09-05T12:17:05.343 回答