mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-24 20:33:31 +01:00
prevent integer underflow
(not currently exploitable, ilja and i think) svn:r3010
This commit is contained in:
parent
9811f68310
commit
185f047450
@ -122,6 +122,10 @@ static INLINE char *format_msg(char *buf, size_t buf_len,
|
||||
size_t n;
|
||||
int r;
|
||||
char *end_of_prefix;
|
||||
if (buf_len < 2) { /* prevent integer underflow */
|
||||
tor_assert(0);
|
||||
exit(1);
|
||||
}
|
||||
buf_len -= 2; /* subtract 2 characters so we have room for \n\0 */
|
||||
|
||||
n = _log_prefix(buf, buf_len, severity);
|
||||
|
Loading…
Reference in New Issue
Block a user