diff -r c743ef5928ba -r f966699dea19 idlehomescreen/xmluirendering/dom/src/xndomstringpooloptimizer.cpp --- a/idlehomescreen/xmluirendering/dom/src/xndomstringpooloptimizer.cpp Tue Feb 02 00:04:13 2010 +0200 +++ b/idlehomescreen/xmluirendering/dom/src/xndomstringpooloptimizer.cpp Fri Feb 19 22:42:37 2010 +0200 @@ -82,7 +82,7 @@ } TInt index = FindEntry( aString, 0, iEntries.Count() - 1 ); - if( index > 0 && index < iEntries.Count() ) + if( index >= 0 && index < iEntries.Count() ) { return iEntries[index].iIndex; }