diff options
author | Jim Meyering <jim@meyering.net> | 2000-12-09 20:54:23 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-12-09 20:54:23 +0000 |
commit | 8f55fdc3855fc3cdbc27717366bd374833216dca (patch) | |
tree | 374f548c7c4af15ebe216a765b0bc1c692bf07d1 /src | |
parent | 26f88f15c8e89ad57ec9aaeefce53da3a71fd125 (diff) | |
download | coreutils-8f55fdc3855fc3cdbc27717366bd374833216dca.tar.xz |
(chopt_free): don't free anything
Diffstat (limited to 'src')
-rw-r--r-- | src/chown-core.c | 4 |
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 */ |