Move declaration of local "minus" down to be nearer point of use.
+2006-11-13 Jim Meyering <jim@meyering.net>
+
+ * src/sort.c (main): Plug a tiny memory leak.
+ Move declaration of local "minus" down to be nearer point of use.
+
2006-11-12 Jim Meyering <jim@meyering.net>
du would exit early, when encountering an inaccessible directory
size_t nfiles = 0;
bool posixly_correct = (getenv ("POSIXLY_CORRECT") != NULL);
bool obsolete_usage = (posix2_version () < 200112);
- char *minus = "-", **files;
+ char **files;
char const *outfile = NULL;
initialize_main (&argc, &argv);
if (nfiles == 0)
{
+ static char *minus = "-";
nfiles = 1;
+ free (files);
files = −
}