[ruamoko] Plug another memory leak

Now running vkgen is leak-free (and, by extension, qwaq-cmd, it seems).

I'm really not sure why I used a dynamic array for that case.
This commit is contained in:
Bill Currie 2023-03-05 22:41:59 +09:00
parent 8efe8e63d3
commit 9982eb629d

View file

@ -448,10 +448,8 @@ main (int argc, char **argv)
COM_InitArgv (qargs->args.size, qargs->args.a);
num_sys++;
} else {
qwaq_thread_t qargs = {};
DARRAY_INIT (&qargs.args, 2);
DARRAY_APPEND (&qargs.args, this_program);
COM_InitArgv (qargs.args.size, qargs.args.a);
const char *args[] = { this_program, 0 };
COM_InitArgv (1, args);
}
init_qf ();