From 88c4bb8763146035a98980c9eca4721dd2b955bc Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Mon, 19 Oct 2009 02:39:02 +0000 Subject: [PATCH 1/1] hotplug2: fix "MALLOC FAILURE!" message caused by a missing return code check on recv() SVN-Revision: 18061 --- package/hotplug2/patches/100-recv_check.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 package/hotplug2/patches/100-recv_check.patch diff --git a/package/hotplug2/patches/100-recv_check.patch b/package/hotplug2/patches/100-recv_check.patch new file mode 100644 index 0000000000..168df47bb0 --- /dev/null +++ b/package/hotplug2/patches/100-recv_check.patch @@ -0,0 +1,12 @@ +--- a/hotplug2.c ++++ b/hotplug2.c +@@ -300,6 +300,9 @@ int main(int argc, char *argv[]) { + worker_ctx = settings->worker->module->init(settings); + while (process) { + size = recv(settings->netlink_socket, &buffer, sizeof(buffer), 0); ++ if (size < 0) ++ continue; ++ + uevent = uevent_deserialize(buffer, size); + + if (uevent == NULL) -- 2.30.2