Merge pull request #484 from turol/master

Fix read past end of buffer after call to TokenMatch
pull/490/head
Alexander Gessler 2015-03-10 00:29:25 +01:00
commit 3c56e978f7
1 changed files with 6 additions and 1 deletions

View File

@ -201,7 +201,12 @@ template <class char_t>
AI_FORCE_INLINE bool TokenMatch(char_t*& in, const char* token, unsigned int len)
{
if (!::strncmp(token,in,len) && IsSpaceOrNewLine(in[len])) {
in += len+1;
if (in[len] != '\0') {
in += len+1;
} else {
// If EOF after the token make sure we don't go past end of buffer
in += len;
}
return true;
}