mirror of
https://github.com/cryb-to/cryb-to.git
synced 2024-11-25 15:15:42 +00:00
Missing newline character
This commit is contained in:
parent
6be7e6da5f
commit
d508e9ebc2
1 changed files with 1 additions and 1 deletions
|
@ -139,7 +139,7 @@ t_strlcat(char **desc CRYB_UNUSED, void *arg)
|
||||||
buf[T_BUFSIZE] = T_CANARY;
|
buf[T_BUFSIZE] = T_CANARY;
|
||||||
sz = strlcat(buf, t->in, T_BUFSIZE);
|
sz = strlcat(buf, t->in, T_BUFSIZE);
|
||||||
if (buf[T_BUFSIZE] != T_CANARY) {
|
if (buf[T_BUFSIZE] != T_CANARY) {
|
||||||
t_verbose("buffer overflow");
|
t_verbose("buffer overflow\n");
|
||||||
return (0);
|
return (0);
|
||||||
}
|
}
|
||||||
ret = t_compare_sz(t->sz, sz);
|
ret = t_compare_sz(t->sz, sz);
|
||||||
|
|
Loading…
Reference in a new issue