From a8ac369584282ef081c54b11edc67d8f832e6427 Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Sun, 20 Oct 2013 04:58:36 +0000 Subject: [PATCH] fixed uninitialized variable in http_parser (introduced with web seeding improvements) --- src/http_parser.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/http_parser.cpp b/src/http_parser.cpp index 9d8606d9e..e14603431 100644 --- a/src/http_parser.cpp +++ b/src/http_parser.cpp @@ -71,6 +71,7 @@ namespace libtorrent , m_state(read_status) , m_recv_buffer(0, 0) , m_body_start_pos(0) + , m_connection_close(false) , m_chunked_encoding(false) , m_finished(false) , m_cur_chunk_end(-1)