diff options
-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 */ |