From: Bruno Haible Date: Tue, 5 Sep 2006 11:48:30 +0000 (+0000) Subject: (iconv_alloc): No need to test for " && dest " at the end - dest is X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=fc784f79ba5a4ffbd48592270025b3734a5421a6;p=gnulib.git (iconv_alloc): No need to test for " && dest " at the end - dest is always != NULL there. --- diff --git a/lib/iconvme.c b/lib/iconvme.c index 5de84cc529..394d1a4438 100644 --- a/lib/iconvme.c +++ b/lib/iconvme.c @@ -189,7 +189,7 @@ again: *outp = '\0'; out: - if (have_error && dest) + if (have_error) { int save_errno = errno; free (dest);