Skip to content

Commit

Permalink
fixed: since we now have 20 buffers, we need to use strlen, not a fix…
Browse files Browse the repository at this point in the history
…ed length. thanks to pantaloonix
  • Loading branch information
spiff committed Jan 26, 2011
1 parent 791d091 commit 542ae99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xbmc/utils/ScraperParser.cpp
Expand Up @@ -513,8 +513,8 @@ void CScraperParser::InsertToken(CStdString& strOutput, int buf, const char* tok
{
strOutput.Insert(i2,token);
i2 += strlen(token);
strOutput.Insert(i2+2,token);
i2 += 2;
strOutput.Insert(i2+strlen(temp),token);
i2 += strlen(temp);
}
}

Expand Down

0 comments on commit 542ae99

Please sign in to comment.