diff options
author | Ulrich Drepper <drepper@redhat.com> | 2008-03-19 06:43:34 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2008-03-19 06:43:34 +0000 |
commit | 72e6cdfa2cd95240439c72705ab28a2eebb7d04e (patch) | |
tree | ae830b7817948dc795cc92ec98216c478dde57e3 /time/lc-time-cleanup.c | |
parent | 354b75277bc86768eafbbf5f590deb27e0a71d89 (diff) | |
download | glibc-72e6cdfa2cd95240439c72705ab28a2eebb7d04e.tar glibc-72e6cdfa2cd95240439c72705ab28a2eebb7d04e.tar.gz glibc-72e6cdfa2cd95240439c72705ab28a2eebb7d04e.tar.bz2 glibc-72e6cdfa2cd95240439c72705ab28a2eebb7d04e.zip |
Remove useless "if" before "free".
Diffstat (limited to 'time/lc-time-cleanup.c')
-rw-r--r-- | time/lc-time-cleanup.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/time/lc-time-cleanup.c b/time/lc-time-cleanup.c index 7972700686..6777f487a2 100644 --- a/time/lc-time-cleanup.c +++ b/time/lc-time-cleanup.c @@ -29,12 +29,9 @@ _nl_cleanup_time (struct locale_data *locale) locale->private.time = NULL; locale->private.cleanup = NULL; - if (data->eras != NULL) - free (data->eras); - if (data->alt_digits != NULL) - free (data->alt_digits); - if (data->walt_digits != NULL) - free (data->walt_digits); + free (data->eras); + free (data->alt_digits); + free (data->walt_digits); free (data); } |