summaryrefslogtreecommitdiff
path: root/apps/plugins/theme_remove.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/theme_remove.c')
-rw-r--r--apps/plugins/theme_remove.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/plugins/theme_remove.c b/apps/plugins/theme_remove.c
index d679338ff8..674342a920 100644
--- a/apps/plugins/theme_remove.c
+++ b/apps/plugins/theme_remove.c
@@ -236,7 +236,8 @@ static int remove_dir(char* dirname, int len)
236 236
237 /* append name to current directory */ 237 /* append name to current directory */
238 rb->snprintf(dirname+dirlen, len-dirlen, "/%s", entry->d_name); 238 rb->snprintf(dirname+dirlen, len-dirlen, "/%s", entry->d_name);
239 if (entry->attribute & ATTR_DIRECTORY) 239 struct dirinfo info = rb->dir_get_info(dir, entry);
240 if (info.attribute & ATTR_DIRECTORY)
240 { 241 {
241 /* remove a subdirectory */ 242 /* remove a subdirectory */
242 if (!rb->strcmp((char *)entry->d_name, ".") || 243 if (!rb->strcmp((char *)entry->d_name, ".") ||