Skip to content

Commit

Permalink
MythHttpHandler: Fix coverity ID 746865 Uninitialized scalar field
Browse files Browse the repository at this point in the history
In MythHttpHandler::MythHttpHandler(): Several scalar fields are not
initialized by the constructor.
  • Loading branch information
Paul Harrison committed Jun 8, 2013
1 parent 7261d51 commit 78a89cb
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions mythtv/libs/libmythbase/mythhttphandler.cpp
Expand Up @@ -15,6 +15,7 @@
const uint MythHttpHandler::kMaxRedirectCount = 32;

MythHttpHandler::MythHttpHandler(MythHttpPool *pool) :
m_cur_status_id(0), m_cur_get_id(0), m_cur_redirect_cnt(0),
m_pool(pool), m_qhttp(new QHttp())
{
connect(m_qhttp, SIGNAL(done(bool)),
Expand Down

0 comments on commit 78a89cb

Please sign in to comment.