suppress valgrind warnings from knew -a- pimb.org

svn:r138
This commit is contained in:
Niels Provos 2005-03-31 19:53:06 +00:00
parent d85d47f8ca
commit 1919a4aed6

View File

@ -249,7 +249,7 @@ int
epoll_add(void *arg, struct event *ev)
{
struct epollop *epollop = arg;
struct epoll_event epev;
struct epoll_event epev = {0, {0}};
struct evepoll *evep;
int fd, op, events;
@ -297,7 +297,7 @@ int
epoll_del(void *arg, struct event *ev)
{
struct epollop *epollop = arg;
struct epoll_event epev;
struct epoll_event epev = {0, {0}};
struct evepoll *evep;
int fd, events, op;
int needwritedelete = 1, needreaddelete = 1;