hotplug2: fix "MALLOC FAILURE!" message caused by a missing return code check on recv()

SVN-Revision: 18061
This commit is contained in:
Felix Fietkau 2009-10-19 02:39:02 +00:00
parent 0b077fa3a7
commit 47ba8235cd

View File

@ -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)