Skip to content

Commit

Permalink
Fix copy/paste error in GetEITPIDChanges(). Coverity 746768
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartm committed Dec 18, 2012
1 parent feb59b0 commit a1b3966
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythtv/mpeg/dvbstreamdata.cpp
Expand Up @@ -522,7 +522,7 @@ bool DVBStreamData::GetEITPIDChanges(const uint_vec_t &cur_pids,
}

if (find(cur_pids.begin(), cur_pids.end(),
(uint) FREESAT_EIT_PID) == cur_pids.end())
(uint) FREESAT_EIT_PID) != cur_pids.end())
{
del_pids.push_back(FREESAT_EIT_PID);
}
Expand Down

0 comments on commit a1b3966

Please sign in to comment.