This commit is contained in:
Viktor Szakats 2025-02-28 17:44:55 +01:00
parent e7751571eb
commit f90a09bf26
No known key found for this signature in database
GPG Key ID: B5ABD165E2AEF201

View File

@ -449,9 +449,9 @@ static int init_fifo(GlobalInfo *g)
static void clean_fifo(GlobalInfo *g)
{
epoll_ctl(g->epfd, EPOLL_CTL_DEL, g->fifofd, NULL);
fclose(g->input);
unlink(fifo);
epoll_ctl(g->epfd, EPOLL_CTL_DEL, g->fifofd, NULL);
fclose(g->input);
unlink(fifo);
}