[tracker/tracker-0.10-no-atime: 17/23] tracker-extract, gif: O_NOATIME requires owner to match, allow fallback
- From: Philip Van Hoof <pvanhoof src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [tracker/tracker-0.10-no-atime: 17/23] tracker-extract, gif: O_NOATIME requires owner to match, allow fallback
- Date: Fri, 23 Sep 2011 11:05:05 +0000 (UTC)
commit a70370c2fd13518c249b50bc9c87149b2c15c1af
Author: Philip Van Hoof <philip codeminded be>
Date: Fri Sep 23 11:46:54 2011 +0200
tracker-extract, gif: O_NOATIME requires owner to match, allow fallback
src/tracker-extract/tracker-extract-gif.c | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
---
diff --git a/src/tracker-extract/tracker-extract-gif.c b/src/tracker-extract/tracker-extract-gif.c
index 3d3d184..725a31b 100644
--- a/src/tracker-extract/tracker-extract-gif.c
+++ b/src/tracker-extract/tracker-extract-gif.c
@@ -562,6 +562,9 @@ extract_gif (const gchar *uri,
}
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 gif file '%s': %s\n",
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]