浏览代码

Comment on dirents deep copy

master
lostd 10 年前
父节点
当前提交
368b43572d
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. +1
    -0
      noice.c

+ 1
- 0
noice.c 查看文件

@@ -234,6 +234,7 @@ begin:
if (strcmp(dp->d_name, ".") == 0
|| strcmp(dp->d_name, "..") == 0)
continue;
/* Deep copy because readdir(3) reuses the entries */
dents = realloc(dents, (n + 1) * sizeof(*dents));
if (dents == NULL)
printerr(1, "realloc");


正在加载...
取消
保存