Close standard output after printing XID, patch due Abby Cedar. - surf - [fork] surf browser, a WebKit based browser
HTML git clone git@git.drkhsh.at/surf.git
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit 96041e5ba2e19a077cb8aead03899c0b1eef529a
DIR parent 6af15aa636ae72f1cbd89ed93ea1e5b0c9ddfa02
HTML Author: Troels Henriksen <athas@sigkill.dk>
Date: Tue, 21 Feb 2012 12:00:01 +0100
Close standard output after printing XID, patch due Abby Cedar.
Diffstat:
M surf.c | 3 +++
1 file changed, 3 insertions(+), 0 deletions(-)
---
DIR 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;
}