1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-08-24 00:13:42 +03:00
openwrt-xburst/package/hotplug2/patches/100-recv_check.patch

13 lines
342 B
Diff
Raw Normal View History

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