summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/luatexdir/luasocket
diff options
context:
space:
mode:
authorTaco Hoekwater <taco@elvenkind.com>2010-06-10 11:39:57 +0000
committerTaco Hoekwater <taco@elvenkind.com>2010-06-10 11:39:57 +0000
commit250c0a02ac148ca0f8a4dcea1f7ec0e34b64c4a4 (patch)
tree472bfabb1b0d2b9ad6521e6207940208faf42ef5 /Build/source/texk/web2c/luatexdir/luasocket
parent0f510c9d7340bf01f7d6a3455b6c9ef69b7c6136 (diff)
enlarge some of the sprintf buffers to prevent buffer overruns
git-svn-id: svn://tug.org/texlive/trunk@18862 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/luatexdir/luasocket')
-rw-r--r--Build/source/texk/web2c/luatexdir/luasocket/src/options.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Build/source/texk/web2c/luatexdir/luasocket/src/options.c b/Build/source/texk/web2c/luatexdir/luasocket/src/options.c
index 5da3c518c28..1eaae8d6939 100644
--- a/Build/source/texk/web2c/luatexdir/luasocket/src/options.c
+++ b/Build/source/texk/web2c/luatexdir/luasocket/src/options.c
@@ -33,7 +33,7 @@ int opt_meth_setoption(lua_State *L, p_opt opt, p_socket ps)
while (opt->name && strcmp(name, opt->name))
opt++;
if (!opt->func) {
- char msg[45];
+ char msg[60];
sprintf(msg, "unsupported option `%.35s'", name);
luaL_argerror(L, 2, msg);
}