[tracker/tracker-0.10-no-atime: 21/23] tracker-extract, tiff: O_NOATIME requires owner to match, allow fallback



commit 92c11e08025c906f2ee940c14d698b0f5187d9e1
Author: Philip Van Hoof <philip codeminded be>
Date:   Fri Sep 23 11:50:02 2011 +0200

    tracker-extract, tiff: O_NOATIME requires owner to match, allow fallback

 src/tracker-extract/tracker-extract-tiff.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)
---
diff --git a/src/tracker-extract/tracker-extract-tiff.c b/src/tracker-extract/tracker-extract-tiff.c
index ae248ab..d177c3c 100644
--- a/src/tracker-extract/tracker-extract-tiff.c
+++ b/src/tracker-extract/tracker-extract-tiff.c
@@ -295,6 +295,9 @@ extract_tiff (const gchar          *uri,
 	filename = g_filename_from_uri (uri, NULL, NULL);
 
 	fd = g_open (filename, O_RDONLY | O_NOATIME, 0);
+	if (fd == -1 && errno == EPERM) {
+		fd = g_open (filename, O_RDONLY, 0);
+	}
 
 	if (fd == -1) {
 		g_warning ("Could not open tiff file '%s': %s\n",



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]