From fc784f79ba5a4ffbd48592270025b3734a5421a6 Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Tue, 5 Sep 2006 11:48:30 +0000 Subject: [PATCH] (iconv_alloc): No need to test for " && dest " at the end - dest is always != NULL there. --- lib/iconvme.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.39.5