Commit 4bc6d365 authored by jouni%heikniemi.net's avatar jouni%heikniemi.net

Bug 62000: File attachments don't work on Windows. Note: only the code from the…

Bug 62000: File attachments don't work on Windows. Note: only the code from the patch was checked in, the documentation issue was split to bug 155743. 2xr=bbaetz
parent 46c9fb47
......@@ -36,6 +36,12 @@ use vars qw(
$vars
);
# Win32 specific hack to avoid a hang when creating/showing an attachment
if ($^O eq 'MSWin32') {
binmode(STDIN);
binmode(STDOUT);
}
# Include the Bugzilla CGI and general utility library.
require "CGI.pl";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment