From e6efea20d3d8d91e0222a97e73b59ccc7c3996de Mon Sep 17 00:00:00 2001 From: jstebbins Date: Sun, 14 Mar 2010 18:21:40 +0000 Subject: [PATCH] LinGui: use a more portable, elegant way of redirecting stderr to pipe Thanks to scsi guy for the patch. git-svn-id: svn://localhost/HandBrake/trunk@3168 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- gtk/src/main.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/gtk/src/main.c b/gtk/src/main.c index c11ff759..a6a12fc9 100644 --- a/gtk/src/main.c +++ b/gtk/src/main.c @@ -546,11 +546,8 @@ IoRedirect(signal_user_data_t *ud) g_free(config); // Set encoding to raw. g_io_channel_set_encoding (ud->activity_log, NULL, NULL); -#if !defined(_WIN32) - stderr->_fileno = pfd[1]; -#else - stderr->_file = pfd[1]; -#endif + // redirect stderr to the writer end of the pipe + dup2(pfd[1], /*stderr*/2); setvbuf(stderr, NULL, _IONBF, 0); channel = g_io_channel_unix_new (pfd[0]); // I was getting an this error: -- 2.11.0