From: Axel Wagner Date: Tue, 7 Sep 2010 15:28:15 +0000 (+0200) Subject: Allocate the right amount of memory for ev_child X-Git-Tag: 4.0.1~7^2~36^2~3 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=17484d82f2b8a530badb8311341ef9e04df4f3ec;p=i3%2Fi3 Allocate the right amount of memory for ev_child --- diff --git a/i3bar/src/child.c b/i3bar/src/child.c index 2b0fb780..c0a56661 100644 --- a/i3bar/src/child.c +++ b/i3bar/src/child.c @@ -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);