# HG changeset patch # User Sergey Kandaurov # Date 1465303277 -10800 # Node ID 8582afc64efa3d2b25551e7a42943a3fa47df959 # Parent ee4a4b42d65f51ca2f8f036f74e9b598f25f9335 Tests: avoid uninitialized warnings in charset_gzip_static.t. diff --git a/charset_gzip_static.t b/charset_gzip_static.t --- a/charset_gzip_static.t +++ b/charset_gzip_static.t @@ -90,7 +90,7 @@ EOF $t->write_file('t1.html.gz', ''); my $in = 'X' x 99; -my $out; +my $out = ''; eval { require IO::Compress::Gzip;