diff options
author | nicm <nicm> | 2019-10-03 10:24:05 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2019-11-27 20:48:03 +0000 |
commit | 5afe7eb850eeb812bdd92cebf1ab21f45c6dd814 (patch) | |
tree | 1868623b7e523374e1aa025650e6e10236427e44 /layout-custom.c | |
parent | b2fd161b071a7076d33119c0ff9aefdd548ff25f (diff) | |
download | rtmux-5afe7eb850eeb812bdd92cebf1ab21f45c6dd814.tar.gz rtmux-5afe7eb850eeb812bdd92cebf1ab21f45c6dd814.tar.bz2 rtmux-5afe7eb850eeb812bdd92cebf1ab21f45c6dd814.zip |
Do not lazily use BUFSIZ for "I don't care what size" when building
strings because it is only guaranteed to be 256 bytes and even the
default 1024 is not always enough. Reported by Gregory Pakosz.
Diffstat (limited to 'layout-custom.c')
-rw-r--r-- | layout-custom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/layout-custom.c b/layout-custom.c index 7d731d19..d7371292 100644 --- a/layout-custom.c +++ b/layout-custom.c @@ -60,7 +60,7 @@ layout_checksum(const char *layout) char * layout_dump(struct layout_cell *root) { - char layout[BUFSIZ], *out; + char layout[8192], *out; *layout = '\0'; if (layout_append(root, layout, sizeof layout) != 0) |