Skip to content

Commit

Permalink
Merge pull request #200 from dbrobins/scraper-clone-fix
Browse files Browse the repository at this point in the history
Initialize 'loaded' flag in CScraper::Clone constructor. (fixes #11637)
  • Loading branch information
mkortstiege committed Jun 14, 2011
2 parents 6a0ee40 + c8222c7 commit c77775a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/addons/Scraper.cpp
Expand Up @@ -160,7 +160,7 @@ AddonPtr CScraper::Clone(const AddonPtr &self) const
}

CScraper::CScraper(const CScraper &rhs, const AddonPtr &self)
: CAddon(rhs, self)
: CAddon(rhs, self), m_fLoaded(false)
{
m_pathContent = rhs.m_pathContent;
m_persistence = rhs.m_persistence;
Expand Down

0 comments on commit c77775a

Please sign in to comment.