Skip to content
Snippets Groups Projects
Commit c741deb8 authored by Timothy B. Terriberry's avatar Timothy B. Terriberry
Browse files

Fix an uninitialized value in the http reader.

parent 28dce6b3
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment