- Include <alloca.h> even on non-__GNUC__ systems.

- Add some tests for unresolved bugs.
This commit is contained in:
Paul Smith
2009-10-03 20:08:20 +00:00
parent 56653d8524
commit f87715a62c
7 changed files with 99 additions and 43 deletions

View File

@@ -382,7 +382,8 @@ string_glob (char *line)
idx += len;
result[idx++] = ' ';
free (chain->name);
/* Because we used PARSEFS_NOCACHE above, we have to free() NAME. */
free ((char *)chain->name);
free (chain);
chain = next;
}