Fix incorrect size comparison in lexer_consume_n The buffer length len and the requested number of tokens n are mixed up in an invalid comparison. This causes all valid requests for n < len tokens to be denied and all invalid requests for n > len tokens to be accepted. This may cause a buffer overflow if the caller requests more characters than they provide space for.
Description
Languages
C
94.2%
C++
3.8%
Makefile
1.3%
Assembly
0.5%
Shell
0.2%