diff --git a/utils/conmon/Makefile b/utils/conmon/Makefile index 198ce2e826..40c58a6499 100644 --- a/utils/conmon/Makefile +++ b/utils/conmon/Makefile @@ -1,14 +1,14 @@ include $(TOPDIR)/rules.mk PKG_NAME:=conmon -PKG_VERSION:=2.0.27 +PKG_VERSION:=2.0.29 PKG_RELEASE:=$(AUTORELEASE) PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://github.com/containers/$(PKG_NAME)/archive/v$(PKG_VERSION) -PKG_HASH:=cb953fa418835a3f57af175df3641140d9c44ec219a7ad2efcc07952241f9ea5 +PKG_HASH:=eb4d5e157671a61b88786e44094775194e30e1d0ad0b9d50035532ece78dbc28 -PKG_MAINTAINER:=Daniel Golle +PKG_MAINTAINER:=Oskari Rauta PKG_LICENSE:=Apache-2.0 PKG_LICENSE_FILES:=LICENSE diff --git a/utils/conmon/patches/100-fix-null-socket-connection-list.patch b/utils/conmon/patches/100-fix-null-socket-connection-list.patch deleted file mode 100644 index 886e13a373..0000000000 --- a/utils/conmon/patches/100-fix-null-socket-connection-list.patch +++ /dev/null @@ -1,22 +0,0 @@ ---- a/src/conn_sock.c -+++ b/src/conn_sock.c -@@ -465,6 +465,9 @@ static void init_remote_sock(struct remo - - static void close_sock(gpointer data, G_GNUC_UNUSED gpointer user_data) - { -+ if (data == NULL) -+ return; -+ - struct remote_sock_s *sock = (struct remote_sock_s *)data; - - close(sock->fd); -@@ -473,5 +476,9 @@ static void close_sock(gpointer data, G_ - - void close_all_readers() - { -+ -+ if (local_mainfd_stdin.readers == NULL) -+ return; -+ - g_ptr_array_foreach(local_mainfd_stdin.readers, close_sock, NULL); - }