Skip to content

Commit

Permalink
RSSSite: fix Coverity ID 700800 Uninitialized scalar field
Browse files Browse the repository at this point in the history
In RSSSite::RSSSite(): A scalar field is not initialized by the constructor.
  • Loading branch information
Paul Harrison committed Jun 2, 2013
1 parent e17b592 commit 833ed3a
Showing 1 changed file with 4 additions and 11 deletions.
15 changes: 4 additions & 11 deletions mythtv/libs/libmyth/mythrssmanager.cpp
Expand Up @@ -115,18 +115,11 @@ RSSSite::RSSSite(const QString& title,
const bool& download,
const QDateTime& updated) :
QObject(),
m_lock(QMutex::Recursive),
m_reply(NULL),
m_manager(NULL)
m_title(title), m_image(image), m_type(type),
m_description(description), m_url(url), m_author(author),
m_download(download), m_updated(updated), m_lock(QMutex::Recursive),
m_podcast(false), m_reply(NULL), m_manager(NULL)
{
m_title = title;
m_image = image;
m_type = type;
m_description = description;
m_url = url;
m_author = author;
m_download = download;
m_updated = updated;
}

RSSSite::~RSSSite()
Expand Down

0 comments on commit 833ed3a

Please sign in to comment.