autofs-5.1.5 - fix amd entry memory leak From: Ian Kent Fix an incorrect free of an amd_entry structure. Signed-off-by: Ian Kent --- CHANGELOG | 1 + lib/master.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) --- autofs-5.0.7.orig/CHANGELOG +++ autofs-5.0.7/CHANGELOG @@ -332,6 +332,7 @@ - remove unused function has_fstab_option(). - remove unused function reverse_mnt_list(). - remove a couple of old debug messages. +- fix amd entry memory leak. 25/07/2012 autofs-5.0.7 ======================= --- autofs-5.0.7.orig/lib/master.c +++ autofs-5.0.7/lib/master.c @@ -154,7 +154,7 @@ void master_free_autofs_point(struct aut ext_mount_remove(&entry->ext_mount, entry->fs); if (!list_empty(&entry->entries)) list_del(&entry->entries); - free(entry); + free_amd_entry(entry); } mounts_mutex_unlock(ap);