[gtk+] wayland: Do not close the descriptor on async_write_data_free()



commit 69b5955108a794c0aab8872d1bffab2a5f820d8c
Author: Carlos Garnacho <carlosg gnome org>
Date:   Wed Jun 24 19:53:39 2015 +0200

    wayland: Do not close the descriptor on async_write_data_free()
    
    At the moment we create the AsyncWriteData, the ownership of the
    fd is granted to the GOutputStream, and the fd set to -1, so at
    this moment we're just silently getting EBADFD.
    
    This partially reverts 25885ca600fff, the initialization of .fd
    to -1 is valid and stays though.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=751414

 gdk/wayland/gdkselection-wayland.c |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)
---
diff --git a/gdk/wayland/gdkselection-wayland.c b/gdk/wayland/gdkselection-wayland.c
index dbe1d63..d109562 100644
--- a/gdk/wayland/gdkselection-wayland.c
+++ b/gdk/wayland/gdkselection-wayland.c
@@ -400,8 +400,6 @@ async_write_data_new (GdkWaylandSelection *selection)
 static void
 async_write_data_free (AsyncWriteData *write_data)
 {
-  close (write_data->selection->stored_selection.fd);
-  write_data->selection->stored_selection.fd = -1;
   g_object_unref (write_data->stream);
   g_slice_free (AsyncWriteData, write_data);
 }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]