diff options
author | George Kiagiadakis <george.kiagiadakis@collabora.com> | 2021-07-09 13:37:04 +0300 |
---|---|---|
committer | George Kiagiadakis <george.kiagiadakis@collabora.com> | 2021-07-28 13:19:02 +0300 |
commit | 8a8133fe9c4fc1628a101b5ca55375c341b1bfe9 (patch) | |
tree | 7565988b37b472082897fda28aec8e7cc1199a3a /lib/utils.c | |
parent | 404fcb1c102af07a6760a80fa994d20e9a4de7f7 (diff) |
lib: initialize epoll_event structures
caught by valgrind
Signed-off-by: George Kiagiadakis <george.kiagiadakis@collabora.com>
Diffstat (limited to 'lib/utils.c')
-rw-r--r-- | lib/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/utils.c b/lib/utils.c index 37bcce9..d66bc78 100644 --- a/lib/utils.c +++ b/lib/utils.c @@ -199,7 +199,7 @@ bool icipc_epoll_thread_init( icipc_epoll_thread_event_func_t sock_func, icipc_epoll_thread_event_func_t other_func, void *data) { - struct epoll_event event; + struct epoll_event event = {0}; self->socket_fd = socket_fd; self->event_fd = -1; |