ldconfig: avoid leak on empty paths in config file

Reviewed-by: Arjun Shankar <arjun@redhat.com>
This commit is contained in:
Siddhesh Poyarekar 2021-08-03 21:10:10 +05:30
parent 2ee9b24f47
commit b0234d79e7

View File

@ -503,7 +503,11 @@ add_dir_1 (const char *line, const char *from_file, int from_line)
entry->path[--i] = '\0';
if (i == 0)
return;
{
free (entry->path);
free (entry);
return;
}
char *path = entry->path;
if (opt_chroot != NULL)