changeset 7253:203bb805f82b

(iconv_alloc): No need to test for " && dest " at the end - dest is always != NULL there.
author Bruno Haible <bruno@clisp.org>
date Tue, 05 Sep 2006 11:48:30 +0000
parents 86ec317a7b82
children 10f2be3ea106
files lib/iconvme.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lib/iconvme.c	Tue Sep 05 11:47:33 2006 +0000
+++ b/lib/iconvme.c	Tue Sep 05 11:48:30 2006 +0000
@@ -189,7 +189,7 @@
   *outp = '\0';
 
 out:
-  if (have_error && dest)
+  if (have_error)
     {
       int save_errno = errno;
       free (dest);