* posix/wordexp.c: Remove some unnecessary tests.

This commit is contained in:
Ulrich Drepper 2006-12-23 09:48:04 +00:00
parent 33c6de5801
commit 3b6667a4ab
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2006-12-23 Ulrich Drepper <drepper@redhat.com>
* posix/wordexp.c: Remove some unnecessary tests.
2006-12-22 Gavin Romig-Koch <gavin@redhat.com>
* nis/nss_compat/compat-grp.c (internal_getgrgid_r): Don't

View File

@ -1809,7 +1809,7 @@ envsubst:
/* Substitute parameter */
break;
if (free_value && value)
if (free_value)
free (value);
if (!colon_seen && value)
@ -1827,7 +1827,7 @@ envsubst:
case ACT_NONNULL_SUBST:
if (value && (*value || !colon_seen))
{
if (free_value && value)
if (free_value)
free (value);
value = pattern ? __strdup (pattern) : pattern;