# HG changeset patch # User Sebastian Brannstrom # Date 1287250766 -3600 # Node ID d6c20128dad575d49edbba1c6d68d964c6be489d # Parent 64a2995a3e08fcd0b60eaa6e1dc33410b1b07e34 Fix for bug 3797. diff -r 64a2995a3e08 -r d6c20128dad5 engine/src/FeedEngine.cpp --- a/engine/src/FeedEngine.cpp Sat Oct 16 15:58:45 2010 +0100 +++ b/engine/src/FeedEngine.cpp Sat Oct 16 18:39:26 2010 +0100 @@ -299,7 +299,7 @@ void CFeedEngine::NewShowL(CShowInfo& aItem) { - DP1("NewShowL, aItem.Title()=", aItem.Title()); + DP1("NewShowL, aItem.Title()=%S", &aItem.Title()); HBufC* description = HBufC::NewLC(KMaxDescriptionLength); TPtr ptr(description->Des()); ptr.Copy(aItem.Description()); diff -r 64a2995a3e08 -r d6c20128dad5 engine/src/FeedParser.cpp --- a/engine/src/FeedParser.cpp Sat Oct 16 15:58:45 2010 +0100 +++ b/engine/src/FeedParser.cpp Sat Oct 16 18:39:26 2010 +0100 @@ -302,11 +302,11 @@ iItemsParsed++; DP2("iItemsParsed: %d, iMaxItems: %d", iItemsParsed, iMaxItems); - if (iItemsParsed >= iMaxItems) - { - iStoppedParsing = ETrue; - DP("*** Too many items, aborting parsing"); - } +// if (iItemsParsed >= iMaxItems) +// { +// iStoppedParsing = ETrue; +// DP("*** Too many items, aborting parsing"); +// } iFeedState=EStateChannel; }