comparison fastcgi_merge_params.t @ 1791:42d9fd20eeb6

Tests: avoid uninitialized warnings in fastcgi tests.
author Sergey Kandaurov <pluknet@nginx.com>
date Mon, 19 Sep 2022 14:13:22 +0400
parents 196d33c2bb45
children
comparison
equal deleted inserted replaced
1790:ba625d5a02e4 1791:42d9fd20eeb6
118 118
119 my $count; 119 my $count;
120 while( $request->Accept() >= 0 ) { 120 while( $request->Accept() >= 0 ) {
121 $count++; 121 $count++;
122 122
123 my $ims = $ENV{HTTP_IF_MODIFIED_SINCE}; 123 my $ims = $ENV{HTTP_IF_MODIFIED_SINCE} || '';
124 my $iums = $ENV{HTTP_IF_UNMODIFIED_SINCE}; 124 my $iums = $ENV{HTTP_IF_UNMODIFIED_SINCE} || '';
125 my $blah = $ENV{HTTP_X_BLAH}; 125 my $blah = $ENV{HTTP_X_BLAH} || '';
126 126
127 print <<EOF; 127 print <<EOF;
128 Location: http://localhost/redirect 128 Location: http://localhost/redirect
129 Content-Type: text/html 129 Content-Type: text/html
130 130