Skip to content

Commit

Permalink
fixed wrong commit. nobody noticed it? ;)
Browse files Browse the repository at this point in the history
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@26323 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
  • Loading branch information
wiso committed Jan 3, 2010
1 parent 747b1ba commit 68f7db0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/karaoke/karaokelyricstextustar.cpp
Expand Up @@ -88,7 +88,7 @@ std::vector< CStdString > CKaraokeLyricsTextUStar::readFile(const CStdString & l
// Last line, if any
if ( lineoffset != lyricSize )
{
if(lyricData.size() < lyricSize)
if(lyricData.size() > lyricSize)
lyricData[lyricSize] = '\0';
lines.push_back( &lyricData[lineoffset] );
}
Expand Down

0 comments on commit 68f7db0

Please sign in to comment.