chiark / gitweb /
udevd: fix queue export for multiple events for the same device
[elogind.git] / udevd.c
diff --git a/udevd.c b/udevd.c
index 3f4605ed1196af539a1757504ae39c763b400faf..98e3d54b3382981fdf28c479ea45f7cb4f449d4d 100644 (file)
--- a/udevd.c
+++ b/udevd.c
@@ -200,6 +200,10 @@ static void export_event_state(struct uevent_msg *msg, enum event_state state)
                        if (loop_msg->devpath && strcmp(loop_msg->devpath, msg->devpath) == 0)
                                return;
 
                        if (loop_msg->devpath && strcmp(loop_msg->devpath, msg->devpath) == 0)
                                return;
 
+               list_for_each_entry(loop_msg, &exec_list, node)
+                       if (loop_msg->devpath && strcmp(loop_msg->devpath, msg->devpath) == 0)
+                               return;
+
                /* move failed events to the failed directory */
                if (state == EVENT_FAILED) {
                        create_path(filename_failed);
                /* move failed events to the failed directory */
                if (state == EVENT_FAILED) {
                        create_path(filename_failed);