# HG changeset patch # User Sergey Kandaurov # Date 1465303277 -10800 # Node ID 8582afc64efa3d2b25551e7a42943a3fa47df959 # Parent ee4a4b42d65f51ca2f8f036f74e9b598f25f9335 Tests: avoid uninitialized warnings in charset_gzip_static.t. diff -r ee4a4b42d65f -r 8582afc64efa charset_gzip_static.t --- a/charset_gzip_static.t Mon Jun 06 19:35:21 2016 +0300 +++ b/charset_gzip_static.t Tue Jun 07 15:41:17 2016 +0300 @@ -90,7 +90,7 @@ $t->write_file('t1.html.gz', ''); my $in = 'X' x 99; -my $out; +my $out = ''; eval { require IO::Compress::Gzip;