[Nautilus-list] fix for thumbnailing files with future timestamp



Hi,

See:
https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=56862

Havoc

Index: nautilus-thumbnails.c
===================================================================
RCS file: /cvs/gnome/nautilus/libnautilus-private/nautilus-thumbnails.c,v
retrieving revision 1.31
diff -u -p -u -r1.31 nautilus-thumbnails.c
--- nautilus-thumbnails.c       25 Sep 2001 18:26:16 -0000      1.31
+++ nautilus-thumbnails.c       11 Mar 2002 21:30:29 -0000
@@ -242,6 +242,14 @@ first_file_more_recent (const char* file
 
        more_recent = file_info->mtime > other_file_info->mtime;
 
+       /* if a file has a modification time in the future, we don't
+        * want to thumbnail it over and over. This is kind of an
+        * underengineered solution but since this case isn't supposed
+        * to happen, it's perhaps appropriate.
+        */
+       if (file_info->mtime > time (NULL))
+               more_recent = FALSE;
+       
        gnome_vfs_file_info_unref (file_info);
        gnome_vfs_file_info_unref (other_file_info);





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