diff options
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/scaninc/c_file.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/tools/scaninc/c_file.cpp b/tools/scaninc/c_file.cpp index d470f959d..595f366cb 100644 --- a/tools/scaninc/c_file.cpp +++ b/tools/scaninc/c_file.cpp @@ -134,7 +134,7 @@ bool CFile::ConsumeComment()      if (m_buffer[m_pos] == '/' && m_buffer[m_pos + 1] == '*')      {          m_pos += 2; -        while (m_buffer[m_pos] != '*' && m_buffer[m_pos + 1] != '/') +        while (m_buffer[m_pos] != '*' || m_buffer[m_pos + 1] != '/')          {              if (m_buffer[m_pos] == 0)                  return false; | 
