Skip to content

Commit 322fd80

Browse files
committed
Be sure to reset `is_https' to False, in case the wsf_request object is reused by the implementation.
1 parent 7168941 commit 322fd80

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

library/server/wsf/src/wsf_request.e

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ feature {NONE} -- Initialization
125125
end
126126

127127
--| HTTPS support
128+
is_https := False
128129
if attached meta_string_variable ("HTTPS") as l_https and then not l_https.is_empty then
129130
is_https := l_https.is_case_insensitive_equal_general ("on")
130131
or else l_https.is_case_insensitive_equal_general ("yes")
@@ -172,6 +173,7 @@ feature -- Destroy
172173
raw_input_data_recorded := False
173174
request_method := empty_string_8
174175
set_uploaded_file_path (Void)
176+
is_https := False
175177
end
176178

177179
feature -- Status report

0 commit comments

Comments
 (0)