From ab7e9dd283abdea1ec94c75b94e450ba39fa3835 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Thu, 9 Oct 2008 19:20:54 +0200 Subject: update: fix memory leak in directory_update_init() When the update queue is full, directory_update_init() did not free the path argument. --- src/update.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/update.c b/src/update.c index 68e030b78..b910486e0 100644 --- a/src/update.c +++ b/src/update.c @@ -419,8 +419,11 @@ unsigned directory_update_init(char *path) if (!path) return 0; - if (update_paths_nr == ARRAY_SIZE(update_paths)) + if (update_paths_nr == ARRAY_SIZE(update_paths)) { + free(path); return 0; + } + assert(update_paths_nr < ARRAY_SIZE(update_paths)); update_paths[update_paths_nr++] = path; next_task_id = update_task_id + update_paths_nr; -- cgit v1.2.3