On Sun, 10 Jul 2016 19:57:31 +0100
Gavin Smith wrote:
> means that the condition will be true whenever a null byte is reached,
> rather when the three bytes "\0\b[" are reached. This is because
> strncmp has a weaker condition for equality than memcmp, in that
> anything after null bytes is ignor
On 10 July 2016 at 11:47, Hanno Böck wrote:
> Hi,
>
> There is an out of bounds invalid memory read in the function
> forward_to_info_syntax().
>
> This is the code (info-utils.c):
> if (looking_at_string (contents, INFO_MENU_ENTRY_LABEL)
> || looking_at_string (contents, INFO_XREF
Hi,
There is an out of bounds invalid memory read in the function
forward_to_info_syntax().
This is the code (info-utils.c):
if (looking_at_string (contents, INFO_MENU_ENTRY_LABEL)
|| looking_at_string (contents, INFO_XREF_LABEL)
|| !memcmp (contents, "\0\b[", 3))
The p