busybox/coreutils
Rob Landley 2631486f1b Patch from Shaun Jackman:
ls has an ugly bug. ls uses an array of pointers, the elements of
which are all in a linked list. To free the elements, instead of
freeing all the elements in the array, array[0..nelements], it frees
by iterating the linked list starting at array[0], which it assumes is
the head of the list. Unfortunately, ls also sorts the array! So,
array[0] is no longer the head, but somewhere in the middle of the
linked list. This patch fixes this bug, and also adds an
ENABLE_FEATURE_CLEAN_UP stanza.
2006-05-02 19:46:52 +00:00
..
2006-03-13 19:04:00 +00:00
2006-04-18 20:57:28 +00:00
2006-03-27 17:00:11 +00:00
2006-04-18 20:41:51 +00:00
2006-05-02 19:46:52 +00:00
2006-04-16 05:54:31 +00:00
2006-04-18 14:17:49 +00:00
2006-04-19 22:22:06 +00:00
2006-03-12 19:26:01 +00:00