mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-01 08:03:31 +01:00
clean up the previous underflow check, and also point out
yet another one that may be a problem. nick? svn:r3016
This commit is contained in:
parent
c1dc17e6e2
commit
671a2de762
@ -122,10 +122,8 @@ static INLINE char *format_msg(char *buf, size_t buf_len,
|
|||||||
size_t n;
|
size_t n;
|
||||||
int r;
|
int r;
|
||||||
char *end_of_prefix;
|
char *end_of_prefix;
|
||||||
if (buf_len < 2) { /* prevent integer underflow */
|
|
||||||
tor_assert(0);
|
tor_assert(buf_len >= 2); /* prevent integer underflow */
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
buf_len -= 2; /* subtract 2 characters so we have room for \n\0 */
|
buf_len -= 2; /* subtract 2 characters so we have room for \n\0 */
|
||||||
|
|
||||||
n = _log_prefix(buf, buf_len, severity);
|
n = _log_prefix(buf, buf_len, severity);
|
||||||
@ -141,7 +139,8 @@ static INLINE char *format_msg(char *buf, size_t buf_len,
|
|||||||
|
|
||||||
r = tor_vsnprintf(buf+n,buf_len-n,format,ap);
|
r = tor_vsnprintf(buf+n,buf_len-n,format,ap);
|
||||||
if (r < 0) {
|
if (r < 0) {
|
||||||
n = buf_len-2;
|
n = buf_len-2; /* XXX is this line redundant with the -=2 above,
|
||||||
|
and also a source of underflow danger? */
|
||||||
strlcpy(buf+buf_len-TRUNCATED_STR_LEN-1, TRUNCATED_STR,
|
strlcpy(buf+buf_len-TRUNCATED_STR_LEN-1, TRUNCATED_STR,
|
||||||
buf_len-(buf_len-TRUNCATED_STR_LEN-1));
|
buf_len-(buf_len-TRUNCATED_STR_LEN-1));
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user