From 7be7568d7d27b2494619b9ee0c2104e620acaed0 Mon Sep 17 00:00:00 2001 From: Brad Parker Date: Mon, 28 Nov 2016 18:19:54 -0500 Subject: [PATCH] do not try to get an archive list if it is inside another archive --- database_info.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database_info.c b/database_info.c index 37be9b16f9..45bd9baf13 100644 --- a/database_info.c +++ b/database_info.c @@ -423,7 +423,7 @@ database_info_handle_t *database_info_dir_init(const char *dir, { const char *path = db->list->elems[i].data; - if (path_is_compressed_file(path)) + if (path_is_compressed_file(path) && !path_contains_compressed_file(path)) { struct string_list *archive_list = file_archive_get_file_list(path, NULL);