pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/multimedia/kodi Pointers are not ordered relative to 0.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/b174a70b6a1f
branches:  trunk
changeset: 358836:b174a70b6a1f
user:      joerg <joerg%pkgsrc.org@localhost>
date:      Tue Feb 21 16:03:21 2017 +0000

description:
Pointers are not ordered relative to 0.

diffstat:

 multimedia/kodi/distinfo                               |   3 ++-
 multimedia/kodi/patches/patch-xbmc_utils_RssReader.cpp |  18 ++++++++++++++++++
 2 files changed, 20 insertions(+), 1 deletions(-)

diffs (39 lines):

diff -r 0642bc30b916 -r b174a70b6a1f multimedia/kodi/distinfo
--- a/multimedia/kodi/distinfo  Tue Feb 21 16:01:36 2017 +0000
+++ b/multimedia/kodi/distinfo  Tue Feb 21 16:03:21 2017 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.12 2016/11/20 22:12:44 joerg Exp $
+$NetBSD: distinfo,v 1.13 2017/02/21 16:03:21 joerg Exp $
 
 SHA1 (15.2-Isengard.tar.gz) = 4acb4a60eadc7289f873cff5add31693b9520cba
 RMD160 (15.2-Isengard.tar.gz) = d81d3f15783b2b69920ea85d7e04f01872f2d85f
@@ -60,6 +60,7 @@
 SHA1 (patch-xbmc_threads_platform_pthreads_ThreadImpl.cpp) = f8853a8ace422d9ab088be89b5562da552edcc7a
 SHA1 (patch-xbmc_utils_CPUInfo.cpp) = 292699f70c30c9462faea7c8bb2d2edb8836d226
 SHA1 (patch-xbmc_utils_CharsetConverter.cpp) = 420a1e39d24c38dca2a8702a22b8cf67ef04dd3f
+SHA1 (patch-xbmc_utils_RssReader.cpp) = f4edccaa464376761baca4808c2ecbeabba6ad7b
 SHA1 (patch-xbmc_utils_Stopwatch.cpp) = fd2b8f7112e89ce164a0329ea3ee389f85705d1f
 SHA1 (patch-xbmc_utils_SystemInfo.cpp) = 444e0e34842f97660d521b9715c01fa4fe99a9f0
 SHA1 (patch-xbmc_utils_test_TestSystemInfo.cpp) = eeca9e097346f9f2c7f047f5906d6ffb75fd393b
diff -r 0642bc30b916 -r b174a70b6a1f multimedia/kodi/patches/patch-xbmc_utils_RssReader.cpp
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/multimedia/kodi/patches/patch-xbmc_utils_RssReader.cpp    Tue Feb 21 16:03:21 2017 +0000
@@ -0,0 +1,18 @@
+$NetBSD: patch-xbmc_utils_RssReader.cpp,v 1.1 2017/02/21 16:03:21 joerg Exp $
+
+--- xbmc/utils/RssReader.cpp.orig      2017-02-19 13:57:42.233006487 +0000
++++ xbmc/utils/RssReader.cpp
+@@ -267,11 +267,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();
+ 



Home | Main Index | Thread Index | Old Index