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.
This commit is contained in:
@ -182,7 +182,7 @@ llist_t *fslist = 0;
|
||||
#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);
|
||||
|
Reference in New Issue
Block a user