]> Sergey Matveev's repositories - public-inbox.git/commitdiff
t/httpd-corner.t: fix uninitialized warning
authorEric Wong <e@yhbt.net>
Fri, 1 May 2020 18:04:44 +0000 (18:04 +0000)
committerEric Wong <e@yhbt.net>
Sun, 3 May 2020 09:29:27 +0000 (09:29 +0000)
Current versions of Perl don't warn when vec() is given `undef'
as its first arg, but Perl 5.10.1 does, at least.

Fixes: c7b4cbdadf3116a0 ("t/httpd-corner: improve reliability and diagnostics")
t/httpd-corner.t

index 7a6bcc6696116c0f352fe89794cb63ac7e1b69ce..681486550688222d82fa0e8adbcd61256fb72527 100644 (file)
@@ -296,7 +296,7 @@ my $len = length $str;
 is($len, 26, 'got the alphabet');
 my $check_self = sub {
        my ($conn) = @_;
-       vec(my $rbits, fileno($conn), 1) = 1;
+       vec(my $rbits = '', fileno($conn), 1) = 1;
        select($rbits, undef, undef, 30) or Carp::confess('timed out');
        $conn->read(my $buf, 4096);
        my ($head, $body) = split(/\r\n\r\n/, $buf, 2);