Module: tools Branch: master Commit: d1e074526f3b5ee186de797be1233d6a38e5592d URL: http://source.winehq.org/git/tools.git/?a=commit;h=d1e074526f3b5ee186de797be...
Author: Alexandre Julliard julliard@winehq.org Date: Mon Feb 3 15:25:45 2014 +0100
patches: Force binary mode for CSV decoding.
---
patches/update-regressions | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/patches/update-regressions b/patches/update-regressions index f8c98a2..0502878 100755 --- a/patches/update-regressions +++ b/patches/update-regressions @@ -42,8 +42,7 @@ my $count = 0;
sub read_bugs() { - my $csv = Text::CSV::Encoded->new({ encoding_in => "utf-8", - encoding_out => "utf-8" }); + my $csv = Text::CSV::Encoded->new({ binary => 1 });
open LIST, "-|", "wget", "-qO-", "http://bugs.winehq.org/buglist.cgi?bug_status=UNCONFIRMED&bug_status=NEW..." or die "cannot query bug list";