Zero out struct epoll_event before calling epoll_ctl(). This isn't really required, but is done to avoid warnings. Signed-off-by: Sasha Levin <levinsasha928@xxxxxxxxx> --- tools/kvm/kvm-ipc.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tools/kvm/kvm-ipc.c b/tools/kvm/kvm-ipc.c index 40ab457..68c2565 100644 --- a/tools/kvm/kvm-ipc.c +++ b/tools/kvm/kvm-ipc.c @@ -132,7 +132,7 @@ static void *kvm_ipc__thread(void *param) int kvm_ipc__start(int sock) { - struct epoll_event ev; + struct epoll_event ev = {0}; server_fd = sock; -- 1.7.8 -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html