Allocate the right amount of memory for ev_child

This commit is contained in:
Axel Wagner 2010-09-07 17:28:15 +02:00
parent 6ad922dbd5
commit 17484d82f2
1 changed files with 1 additions and 1 deletions

View File

@ -169,7 +169,7 @@ void start_child(char *command) {
ev_io_start(main_loop, stdin_io);
/* We must cleanup, if the child unexpectedly terminates */
child_sig = malloc(sizeof(ev_io));
child_sig = malloc(sizeof(ev_child));
ev_child_init(child_sig, &child_sig_cb, child_pid, 0);
ev_child_start(main_loop, child_sig);