https://bz.apache.org/bugzilla/show_bug.cgi?id=61511

--- Comment #4 from [email protected] ---
(In reply to Luca Toscano from comment #3)
> if (strlen(line) >= MAX_STRING_LEN) should probably be if (strlen(line) >
> MAX_STRING_LEN).

No, it needs to be >=, else the smaller poc will still trigger an overflow (I
assume it needs to consider a trailing null pointer). Probably it should me
MAX_STRING_LEN-1 in the error message.

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to