aboutsummaryrefslogtreecommitdiff
path: root/src/update.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-02-12 19:11:26 +0100
committerMax Kellermann <max@duempel.org>2009-02-12 19:12:32 +0100
commitdf9245c2aae7518c813385f7cd721cc17ff27062 (patch)
tree975eeff573b74013b0e6c6bb9562091f2311ce39 /src/update.c
parent16bab6019ba400edf15960f6a887702aa85008dd (diff)
update: free deleted subdirectories
Use delete_directory() for removing sub directories instead of dirvec_clear(). This ensures that all memory occupied by subdirectories of deleted directories is freed.
Diffstat (limited to 'src/update.c')
-rw-r--r--src/update.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/update.c b/src/update.c
index 90b7cbe8..17059ffe 100644
--- a/src/update.c
+++ b/src/update.c
@@ -132,6 +132,9 @@ delete_each_song(struct song *song, G_GNUC_UNUSED void *data)
return 0;
}
+static void
+delete_directory(struct directory *directory);
+
/**
* Recursively remove all sub directories and songs from a directory,
* leaving an empty directory.
@@ -142,8 +145,9 @@ clear_directory(struct directory *directory)
int i;
for (i = directory->children.nr; --i >= 0;)
- clear_directory(directory->children.base[i]);
- dirvec_clear(&directory->children);
+ delete_directory(directory->children.base[i]);
+
+ assert(directory->children.nr == 0);
songvec_for_each(&directory->songs, delete_each_song, directory);
}