Index: head/multimedia/kodi/files/patch-xbmc_utils_RssReader.cpp =================================================================== --- head/multimedia/kodi/files/patch-xbmc_utils_RssReader.cpp (nonexistent) +++ head/multimedia/kodi/files/patch-xbmc_utils_RssReader.cpp (revision 433445) @@ -0,0 +1,18 @@ +Fix bogus pointer comparisons. + +--- xbmc/utils/RssReader.cpp.orig 2017-01-21 21:11:51 UTC ++++ xbmc/utils/RssReader.cpp +@@ -266,11 +266,11 @@ void CRssReader::GetNewsItems(TiXmlEleme + if (m_tagSet.empty()) + AddTag("title"); + +- while (itemNode > 0) ++ while (itemNode) + { + TiXmlNode* childNode = itemNode->FirstChild(); + mTagElements.clear(); +- while (childNode > 0) ++ while (childNode) + { + std::string strName = childNode->ValueStr(); + Property changes on: head/multimedia/kodi/files/patch-xbmc_utils_RssReader.cpp ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property