Bug 555309 – giochannel breaks on error Patch from Christian Persch
authorBehdad Esfahbod <behdad@gnome.org>
Mon, 6 Oct 2008 22:57:49 +0000 (22:57 +0000)
committerBehdad Esfahbod <behdad@src.gnome.org>
Mon, 6 Oct 2008 22:57:49 +0000 (22:57 +0000)
2008-10-06  Behdad Esfahbod  <behdad@gnome.org>

        Bug 555309 – giochannel breaks on error
        Patch from Christian Persch

        * glib/giounix.c (g_io_unix_read), (g_io_unix_write),
        (g_io_unix_seek), (g_io_unix_close), (g_io_unix_set_flags):
        Don't shadow err.  Oops!

svn path=/trunk/; revision=7574

ChangeLog
glib/giounix.c

index d21b0c764698cfabee3f557817af725a361d0565..3d36e2042a6b65384fa1e31bd0a3446e6850e5c2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2008-10-06  Behdad Esfahbod  <behdad@gnome.org>
+
+       Bug 555309 – giochannel breaks on error
+       Patch from Christian Persch
+
+       * glib/giounix.c (g_io_unix_read), (g_io_unix_write),
+       (g_io_unix_seek), (g_io_unix_close), (g_io_unix_set_flags):
+       Don't shadow err.  Oops!
+
 2008-10-06  Christophe Fergeau  <teuf@gnome.org>
 
        Bug 555224 – Improve g_format_size_for_display doc
index 8045910e8c3b880bfd3d4863f6992213b5722a79..eaff939ae9c424882ea4fe5c15907650ed4e8dff 100644 (file)
@@ -190,10 +190,10 @@ g_io_unix_read (GIOChannel *channel,
 
   if (result < 0)
     {
-      int err = errno;
+      int errsv = errno;
       *bytes_read = 0;
 
-      switch (err)
+      switch (errsv)
         {
 #ifdef EINTR
           case EINTR:
@@ -205,8 +205,8 @@ g_io_unix_read (GIOChannel *channel,
 #endif
           default:
             g_set_error_literal (err, G_IO_CHANNEL_ERROR,
-                                 g_io_channel_error_from_errno (err),
-                                 g_strerror (err));
+                                 g_io_channel_error_from_errno (errsv),
+                                 g_strerror (errsv));
             return G_IO_STATUS_ERROR;
         }
     }
@@ -231,10 +231,10 @@ g_io_unix_write (GIOChannel  *channel,
 
   if (result < 0)
     {
-      int err = errno;
+      int errsv = errno;
       *bytes_written = 0;
 
-      switch (err)
+      switch (errsv)
         {
 #ifdef EINTR
           case EINTR:
@@ -246,8 +246,8 @@ g_io_unix_write (GIOChannel  *channel,
 #endif
           default:
             g_set_error_literal (err, G_IO_CHANNEL_ERROR,
-                                 g_io_channel_error_from_errno (err),
-                                 g_strerror (err));
+                                 g_io_channel_error_from_errno (errsv),
+                                 g_strerror (errsv));
             return G_IO_STATUS_ERROR;
         }
     }
@@ -297,10 +297,10 @@ g_io_unix_seek (GIOChannel *channel,
 
   if (result < 0)
     {
-      int err = errno;
+      int errsv = errno;
       g_set_error_literal (err, G_IO_CHANNEL_ERROR,
-                           g_io_channel_error_from_errno (err),
-                           g_strerror (err));
+                           g_io_channel_error_from_errno (errsv),
+                           g_strerror (errsv));
       return G_IO_STATUS_ERROR;
     }
 
@@ -316,10 +316,10 @@ g_io_unix_close (GIOChannel *channel,
 
   if (close (unix_channel->fd) < 0)
     {
-      int err = errno;
+      int errsv = errno;
       g_set_error_literal (err, G_IO_CHANNEL_ERROR,
-                           g_io_channel_error_from_errno (err),
-                           g_strerror (err));
+                           g_io_channel_error_from_errno (errsv),
+                           g_strerror (errsv));
       return G_IO_STATUS_ERROR;
     }
 
@@ -380,10 +380,10 @@ g_io_unix_set_flags (GIOChannel *channel,
 
   if (fcntl (unix_channel->fd, F_SETFL, fcntl_flags) == -1)
     {
-      int err = errno;
+      int errsv = errno;
       g_set_error_literal (err, G_IO_CHANNEL_ERROR,
-                           g_io_channel_error_from_errno (err),
-                           g_strerror (err));
+                           g_io_channel_error_from_errno (errsv),
+                           g_strerror (errsv));
       return G_IO_STATUS_ERROR;
     }