no need to xmalloc envvar

This commit is contained in:
Albert S. 2013-09-30 19:56:11 +02:00
parent 29794f9b99
commit 0fb49ec91f
1 changed files with 1 additions and 1 deletions

View File

@ -227,7 +227,7 @@ 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 = xmalloc(19 * sizeof(char));
char envvar[19];
sprintf(envvar, "adhocifyevent=%"PRIu32, mask);
putenv(envvar);