aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordteirney <dteirney@svn>2009-11-21 11:10:52 +0000
committerdteirney <dteirney@svn>2009-11-21 11:10:52 +0000
commit1c3f1d3f3bb7719200a211e263f986c830a16c21 (patch)
tree88aa5d05810847bb6d532336342c9df041546a8c
parent20126880c403c284e5951f599fdb9e92e2d2a6d0 (diff)
Fixed: Ticket #7555: segmentation fault when the background thumb loader accessed the MythTV Guide.
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@24823 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
-rw-r--r--xbmc/FileSystem/CMythDirectory.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/xbmc/FileSystem/CMythDirectory.cpp b/xbmc/FileSystem/CMythDirectory.cpp
index ada5d02429..b801e02469 100644
--- a/xbmc/FileSystem/CMythDirectory.cpp
+++ b/xbmc/FileSystem/CMythDirectory.cpp
@@ -181,11 +181,11 @@ bool CCMythDirectory::GetGuideForChannel(const CStdString& base, CFileItemList &
CVideoInfoTag* tag = item->GetVideoInfoTag();
- tag->m_strAlbum = GetValue(program[i].callsign);
- tag->m_strShowTitle = GetValue(program[i].title);
- tag->m_strPlotOutline = GetValue(program[i].subtitle);
- tag->m_strPlot = GetValue(program[i].description);
- tag->m_strGenre = GetValue(program[i].category);
+ tag->m_strAlbum = program[i].callsign;
+ tag->m_strShowTitle = program[i].title;
+ tag->m_strPlotOutline = program[i].subtitle;
+ tag->m_strPlot = program[i].description;
+ tag->m_strGenre = program[i].category;
if (tag->m_strPlot.Left(tag->m_strPlotOutline.length()) != tag->m_strPlotOutline && !tag->m_strPlotOutline.IsEmpty())
tag->m_strPlot = tag->m_strPlotOutline + '\n' + tag->m_strPlot;