fix buffer overflow in opt_meth_setoption (#496)
This commit is contained in:
parent
c34b54d974
commit
07e879e74c
@ -5,6 +5,7 @@
|
|||||||
* RCS ID: $Id: options.c,v 1.6 2005/11/20 07:20:23 diego Exp $
|
* RCS ID: $Id: options.c,v 1.6 2005/11/20 07:20:23 diego Exp $
|
||||||
\*=========================================================================*/
|
\*=========================================================================*/
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
#include "auxiliar.h"
|
#include "auxiliar.h"
|
||||||
#include "options.h"
|
#include "options.h"
|
||||||
@ -31,9 +32,10 @@ int opt_meth_setoption(lua_State *L, p_opt opt, p_socket ps)
|
|||||||
while (opt->name && strcmp(name, opt->name))
|
while (opt->name && strcmp(name, opt->name))
|
||||||
opt++;
|
opt++;
|
||||||
if (!opt->func) {
|
if (!opt->func) {
|
||||||
char msg[45];
|
char* msg = malloc(30+strlen(name));
|
||||||
sprintf(msg, "unsupported option `%.35s'", name);
|
sprintf(msg, "unsupported option `%.35s'", name);
|
||||||
luaL_argerror(L, 2, msg);
|
luaL_argerror(L, 2, msg);
|
||||||
|
free(msg);
|
||||||
}
|
}
|
||||||
return opt->func(L, ps);
|
return opt->func(L, ps);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user