]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - make/check_epoll.cpp
Fixed out of bounds memory access from malformed DNS queries that have an invalid...
[user/henk/code/inspircd.git] / make / check_epoll.cpp
1 #include <sys/epoll.h>
2
3 int main() {
4         int fd = epoll_create(1);
5         return (fd < 0);
6 }