- the event name is only valid if the event length is greater then 0

SVN revision: 30582
This commit is contained in:
Dan Sinclair 2007-07-03 18:18:12 +00:00 committed by Dan Sinclair
parent e120a285b7
commit 0aba1dbca4
1 changed files with 1 additions and 1 deletions

View File

@ -168,7 +168,7 @@ _ecore_file_monitor_inotify_handler(void *data __UNUSED__, Ecore_Fd_Handler *fdh
em = _ecore_file_monitor_inotify_monitor_find(event->wd);
if (!em) continue;
_ecore_file_monitor_inotify_events(em, event->name, event->mask);
_ecore_file_monitor_inotify_events(em, (event->len ? event->name : NULL), event->mask);
}
return 1;