Close standard output after printing XID, patch due Abby Cedar. - surf - surf browser, a WebKit2GTK based browser
Log
Files
Refs
README
LICENSE
---
commit 96041e5ba2e19a077cb8aead03899c0b1eef529a
parent 6af15aa636ae72f1cbd89ed93ea1e5b0c9ddfa02
Author: Troels Henriksen 
Date:   Tue, 21 Feb 2012 12:00:01 +0100

Close standard output after printing XID, patch due Abby Cedar.
Diffstat:
  surf.c                              |       3 +++

1 file changed, 3 insertions(+), 0 deletions(-)
---
diff --git a/surf.c b/surf.c
@@ -548,6 +548,9 @@ newclient(void) {
                 gdk_display_sync(gtk_widget_get_display(c->win));
                 printf("%u\n", (guint)GDK_WINDOW_XID(GTK_WIDGET(c->win)->window));
                 fflush(NULL);
+                if (fclose(stdout) != 0) {
+                        die("Error closing stdout");
+                }
         }
         return c;
 }