+2007-12-25 Bruno Haible <bruno@clisp.org>
+
+ Fixup after 2007-10-16 commit.
+ * lib/glob.c (glob_in_dir): Don't use ISO C99 syntax.
+
2007-12-24 Bruno Haible <bruno@clisp.org>
Make --enable-relocatable work with DESTDIR.
while (1)
{
struct globnames *old = names;
- for (size_t i = 0; i < cur; ++i)
+ size_t i;
+ for (i = 0; i < cur; ++i)
free (names->name[i]);
names = names->next;
/* NB: we will not leak memory here if we exit without
while (1)
{
struct globnames *old = names;
- for (size_t i = 0; i < cur; ++i)
+ size_t i;
+ for (i = 0; i < cur; ++i)
new_gl_pathv[pglob->gl_offs + pglob->gl_pathc++]
= names->name[i];
names = names->next;