MFV "xmalloc: zero size" fix.

MFC after:	1 week
This commit is contained in:
Dag-Erling Smørgrav 2008-09-24 21:20:44 +00:00
commit 8137f50df5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=183336

View File

@ -386,8 +386,9 @@ input_userauth_banner(int type, u_int32_t seq, void *ctxt)
if (options.log_level >= SYSLOG_LEVEL_INFO) {
if (len > 65536)
len = 65536;
msg = xmalloc(len * 4); /* max expansion from strnvis() */
msg = xmalloc(len * 4 + 1); /* max expansion from strnvis() */
strnvis(msg, raw, len * 4, VIS_SAFE|VIS_OCTAL);
msg[len*4] = '\0';
fprintf(stderr, "%s", msg);
xfree(msg);
}