- fix should_look_for_dot_directory_file

This commit is contained in:
Bastien Nocera 2002-07-17 08:23:59 +00:00
parent 046369b55d
commit bd78f1315d
2 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,11 @@
2002-07-17 Bastien Nocera <hadess@hadess.net>
* libnautilus-private/nautilus-directory-async.c:
(should_look_for_dot_directory_file): fix function not to run
eel_str_has_prefix against NULL, either we use a NULL terminator to
the array, or G_N_ELEMENTS. Makes rio500: work, and should speed up
most network methods. (Closes: #78951)
2002-07-11 Michael Meeks <michael@ximian.com>
* components/*/.server.in -> *.server.in.in

View file

@ -1644,8 +1644,7 @@ should_look_for_dot_directory_file (NautilusFile *file)
"favorites:",
"start-here:",
"applications:",
"all-applications:",
NULL
"all-applications:"
};
uri = file->details->directory->details->uri;