Mercurial > pidgin
changeset 20828:db66eb25c389
Fix allocating a console for and friends on Windows Vista. Refs #3392.
author | Daniel Atallah <daniel.atallah@gmail.com> |
---|---|
date | Mon, 08 Oct 2007 10:55:34 +0000 |
parents | 6e6a870fd4f6 |
children | 3d0e4616eb39 |
files | pidgin/win32/winpidgin.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/pidgin/win32/winpidgin.c Sun Oct 07 23:40:58 2007 +0000 +++ b/pidgin/win32/winpidgin.c Mon Oct 08 10:55:34 2007 +0000 @@ -545,7 +545,7 @@ if (strstr(lpszCmdLine, "-d") || strstr(lpszCmdLine, "-h") || strstr(lpszCmdLine, "-v")) { /* If stdout hasn't been redirected to a file, alloc a console * (_istty() doesn't work for stuff using the GUI subsystem) */ - if (_fileno(stdout) == -1) { + if (_fileno(stdout) == -1 || _fileno(stdout) == -2) { LPFNATTACHCONSOLE MyAttachConsole = NULL; if ((hmod = GetModuleHandle("kernel32.dll"))) { MyAttachConsole =