ecore-file: do not emit events when an inotify watch is removed
authorMike Blumenkrantz <zmike@osg.samsung.com>
Tue, 3 Oct 2017 17:33:14 +0000 (13:33 -0400)
committerMike Blumenkrantz <zmike@osg.samsung.com>
Tue, 3 Oct 2017 17:34:22 +0000 (13:34 -0400)
???????????????????????????????????????????????????????????????????????????????

@fix

src/lib/ecore_file/ecore_file_monitor_inotify.c

index e4cd3a6..7c8d5c9 100644 (file)
@@ -262,17 +262,9 @@ _ecore_file_monitor_inotify_events(Ecore_File_Monitor *em, char *file, int mask)
         em->func(em->data, em, ECORE_FILE_EVENT_DELETED_SELF, em->path);
      }
    if (mask & IN_IGNORED)
-     {
-        /* The watch is removed. If the file name still exists monitor the new one,
-         * else delete it */
-        if (ecore_file_exists(em->path))
-          {
-             if (_ecore_file_monitor_inotify_monitor(em, em->path))
-               em->func(em->data, em, ECORE_FILE_EVENT_DELETED_SELF, em->path);
-          }
-        else
-          em->func(em->data, em, ECORE_FILE_EVENT_DELETED_SELF, em->path);
-     }
+     /* The watch is removed. If the file name still exists monitor the new one,
+      * else delete it */
+     _ecore_file_monitor_inotify_monitor(em, em->path);
 }
 
 static int