fixed potential overflow :)

Este commit está contenido en:
Albert S. 2013-09-30 20:10:22 +02:00
padre 0fb49ec91f
commit 7149d0d028
Se han modificado 1 ficheros con 2 adiciones y 2 borrados

Ver fichero

@ -227,8 +227,8 @@ bool run(const char *path, const char *eventfile, const char *outfile, uint32_t
const char *argv0 = memrchr(path, '/', strlen(path));
argv0 = ( argv0 == NULL ) ? path : argv0+1;
char envvar[19];
sprintf(envvar, "adhocifyevent=%"PRIu32, mask);
char envvar[30];
snprintf(envvar, 30, "adhocifyevent=%"PRIu32, mask);
putenv(envvar);
execl(path, argv0, (! noappend) ? eventfile : NULL, NULL);