aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Steven Schubiger <stsc@refcnt.org> 2022-06-12 16:44:17 +0200
committerGravatar Steven Schubiger <stsc@refcnt.org> 2022-06-12 16:44:17 +0200
commit66783f3f7b3eb4d0c3bfaf4d069e62bf1e4f5174 (patch)
treeab69da8cae5fc4e80a9285ea4bfd368336e007fb
parent68668ded3a92f4b04bfd387c701faea8a1964abc (diff)
downloadcolorize-66783f3f7b3eb4d0c3bfaf4d069e62bf1e4f5174.tar.gz
colorize-66783f3f7b3eb4d0c3bfaf4d069e62bf1e4f5174.tar.bz2
Add comment that getpwuid() leaks memory
-rw-r--r--colorize.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/colorize.c b/colorize.c
index 16b2a12..4566112 100644
--- a/colorize.c
+++ b/colorize.c
@@ -588,6 +588,7 @@ conf_file_path (char **conf_file)
perror ("getpwuid");
exit (EXIT_FAILURE);
}
+ /* getpwuid() leaks memory */
size = strlen (passwd->pw_dir) + 1 + strlen (CONF_FILE) + 1;
path = xmalloc (size);
snprintf (path, size, "%s/%s", passwd->pw_dir, CONF_FILE);