Merge branch 'obsd-master'

This commit is contained in:
Thomas Adam
2024-01-16 14:01:09 +00:00
2 changed files with 7 additions and 6 deletions

5
proc.c
View File

@ -93,8 +93,9 @@ proc_event_cb(__unused int fd, short events, void *arg)
log_debug("peer %p message %d", peer, imsg.hdr.type);
if (peer_check_version(peer, &imsg) != 0) {
if (imsg.fd != -1)
close(imsg.fd);
int fd = imsg_get_fd(&imsg);
if (fd != -1)
close(fd);
imsg_free(&imsg);
break;
}