Merge branch 'obsd-master'

This commit is contained in:
Thomas Adam 2017-12-19 00:01:18 +00:00
commit 641a885af8
1 changed files with 4 additions and 0 deletions

View File

@ -338,6 +338,10 @@ client_main(struct event_base *base, int argc, char **argv, int flags)
size = 0;
for (i = 0; i < argc; i++)
size += strlen(argv[i]) + 1;
if (size > MAX_IMSGSIZE - (sizeof *data)) {
fprintf(stderr, "command too long\n");
return (1);
}
data = xmalloc((sizeof *data) + size);
/* Prepare command for server. */