commit | a6b5b60942b4e28965f10cb107d4f94aaf756bc1 | [log] [tgz] |
---|---|---|
author | Rob Landley <rob@landley.net> | Mon May 08 19:03:07 2006 +0000 |
committer | Rob Landley <rob@landley.net> | Mon May 08 19:03:07 2006 +0000 |
tree | e97daaa61ca25179f9cfd9251446d00521bb5ddb | |
parent | 712ba85b30426bc8fa093c21ae9a5d0018450cc7 [diff] [blame] |
Fiddling with llist to make memory management easier. Specifically, the option to delete the contents of the list when we delete the list is a good thing.
diff --git a/util-linux/mount.c b/util-linux/mount.c index 61ceba8..4bd6433 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c
@@ -182,7 +182,7 @@ #if ENABLE_FEATURE_CLEAN_UP static void delete_block_backed_filesystems(void) { - llist_free(fslist); + llist_free(fslist, free); } #else void delete_block_backed_filesystems(void);