We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8654081 commit fdd40ffCopy full SHA for fdd40ff
library/server/wsf/extension/wsf_resource_handler_helper.e
@@ -197,8 +197,8 @@ feature -- Retrieve content from WGI_INPUT_STREAM
197
n: INTEGER
198
s: STRING
199
do
200
+ l_input := req.input
201
if req.is_chunked_input then
- l_input := req.input
202
from
203
n := 1_024
204
create Result.make (n)
@@ -217,8 +217,8 @@ feature -- Retrieve content from WGI_INPUT_STREAM
217
end
218
219
else
220
- req.input.read_string (req.content_length_value.as_integer_32)
221
- Result := req.input.last_string
+ l_input.read_string (req.content_length_value.as_integer_32)
+ Result := l_input.last_string
222
223
224
0 commit comments