comparison fastcgi_merge_params2.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
102 102
103 my $count; 103 my $count;
104 while( $request->Accept() >= 0 ) { 104 while( $request->Accept() >= 0 ) {
105 $count++; 105 $count++;
106 106
107 my $ims = $ENV{HTTP_IF_MODIFIED_SINCE}; 107 my $ims = $ENV{HTTP_IF_MODIFIED_SINCE} || '';
108 my $iums = $ENV{HTTP_IF_UNMODIFIED_SINCE}; 108 my $iums = $ENV{HTTP_IF_UNMODIFIED_SINCE} || '';
109 my $blah = $ENV{HTTP_X_BLAH}; 109 my $blah = $ENV{HTTP_X_BLAH} || '';
110 110
111 print <<EOF; 111 print <<EOF;
112 Location: http://localhost/redirect 112 Location: http://localhost/redirect
113 Content-Type: text/html 113 Content-Type: text/html
114 114