Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Ralph Giles
Opusfile
Commits
c741deb8
Commit
c741deb8
authored
Sep 22, 2012
by
Timothy B. Terriberry
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix an uninitialized value in the http reader.
parent
28dce6b3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
src/http.c
src/http.c
+2
-1
No files found.
src/http.c
View file @
c741deb8
...
...
@@ -513,8 +513,9 @@ static void op_http_stream_init(OpusHTTPStream *_stream){
*
pnext
=
_stream
->
conns
+
ci
;
pnext
=&
_stream
->
conns
[
ci
].
next
;
}
op_parsed_url_init
(
&
_stream
->
url
);
_stream
->
ssl_ctx
=
NULL
;
_stream
->
lru_head
=
NULL
;
op_parsed_url_init
(
&
_stream
->
url
);
op_sb_init
(
&
_stream
->
request
);
_stream
->
seekable
=
0
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment