* lib/canonicalize.c (canonicalize_filename_mode): Remove useless
initialization of local, "end".
+2009-08-31 Jim Meyering <meyering@redhat.com>
+
+ canonicalize: remove useless initialization
+ * lib/canonicalize.c (canonicalize_filename_mode): Remove useless
+ initialization of local, "end".
+
2009-08-30 Bruno Haible <bruno@clisp.org>
Fix an unnecessary error on Solaris 10 on NFSv3 file systems.
/* Return the canonical absolute name of a given file.
- Copyright (C) 1996-2008 Free Software Foundation, Inc.
+ Copyright (C) 1996-2009 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
dest = rname + 1;
}
- for (start = end = name; *start; start = end)
+ for (start = name; *start; start = end)
{
/* Skip sequence of multiple file name separators. */
while (*start == '/')