eio: continue on access right error.
authorCedric BAIL <cedric.bail@free.fr>
Thu, 27 Sep 2012 00:55:41 +0000 (00:55 +0000)
committerCedric BAIL <cedric.bail@free.fr>
Thu, 27 Sep 2012 00:55:41 +0000 (00:55 +0000)
SVN revision: 77103

legacy/eio/ChangeLog
legacy/eio/NEWS
legacy/eio/src/lib/eio_dir.c

index ffe62fc..2b8065c 100644 (file)
@@ -47,3 +47,7 @@
 2012-09-14  Cedric Bail
 
        * Fix build with xattr without splice.
+
+2012-09-27  Cedric Bail
+
+       * Don't stop on limited access right.
index fe55f37..a841aae 100644 (file)
@@ -8,6 +8,7 @@ Additions:
 Fixes:
        - fix monitor shutdown when mainloop did never run.
        - fix build with xattr and without splice.
+       - don't stop on limited access right.
 
 Improvements:
 
index 5de5fb6..7bed4fb 100644 (file)
@@ -89,7 +89,7 @@ _eio_file_recursiv_ls(Ecore_Thread *thread,
           {
            case EINA_FILE_DIR:
               if (_eio_lstat(info->path, &buffer) != 0)
-                goto on_error;
+               continue;
 
               if (S_ISLNK(buffer.st_mode))
                 info->type = EINA_FILE_LNK;