Fix error checking in iconv.
authorAndreas Schwab <schwab@redhat.com>
Mon, 25 Jan 2010 15:17:47 +0000 (07:17 -0800)
committerUlrich Drepper <drepper@redhat.com>
Mon, 25 Jan 2010 15:17:47 +0000 (07:17 -0800)
ChangeLog
iconv/iconv_prog.c

index 56f5e45..48ca52e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2010-01-25  Andreas Schwab  <schwab@redhat.com>
+
+       * iconv/iconv_prog.c (write_output): Fix check for open failure.
+
 2010-01-22  Ulrich Drepper  <drepper@redhat.com>
 
        [BZ #11200]
index a1ca05f..3bcb9b4 100644 (file)
@@ -442,7 +442,7 @@ write_output (const char *outbuf, const char *outptr, FILE **output,
       if (output_file != NULL && strcmp (output_file, "-") != 0)
        {
          *output = fopen (output_file, "w");
-         if (output == NULL)
+         if (*output == NULL)
            error (EXIT_FAILURE, errno, _("cannot open output file"));
        }
       else