aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar lostd <lostd@2f30.org>2014-10-08 22:55:44 +0300
committerGravatar lostd <lostd@2f30.org>2014-10-08 22:55:44 +0300
commit368b43572d3017542b2c2f056b196a4f7c79820f (patch)
tree4c5de63c485869f184e3e8ed8918b4b01266d839
parent973aff99b713d300b5b5a17847960707c675702c (diff)
downloadnnn-368b43572d3017542b2c2f056b196a4f7c79820f.tar.gz
Comment on dirents deep copy
-rw-r--r--noice.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/noice.c b/noice.c
index 8d6f0d7..66d856b 100644
--- a/noice.c
+++ b/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");