summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2000-12-09 20:54:23 +0000
committerJim Meyering <jim@meyering.net>2000-12-09 20:54:23 +0000
commit8f55fdc3855fc3cdbc27717366bd374833216dca (patch)
tree374f548c7c4af15ebe216a765b0bc1c692bf07d1 /src
parent26f88f15c8e89ad57ec9aaeefce53da3a71fd125 (diff)
downloadcoreutils-8f55fdc3855fc3cdbc27717366bd374833216dca.tar.xz
(chopt_free): don't free anything
Diffstat (limited to 'src')
-rw-r--r--src/chown-core.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/chown-core.c b/src/chown-core.c
index 265275ac0..2899f587b 100644
--- a/src/chown-core.c
+++ b/src/chown-core.c
@@ -50,8 +50,8 @@ chopt_init (struct Chown_option *chopt)
void
chopt_free (struct Chown_option *chopt)
{
- XFREE (chopt->user_name);
- XFREE (chopt->group_name);
+ /* Deliberately do not free chopt->user_name or ->group_name.
+ They're not always allocated. */
}
/* FIXME: describe */