From 2ca895bae7a25ea8ef7f295b4e8ab01ff75a4914 Mon Sep 17 00:00:00 2001 From: Jonathan Gordon Date: Tue, 3 Jul 2007 08:43:38 +0000 Subject: Fix FS#7387 - trying to go into the file browser when the last folder was on the MMC/mSD card (which was removed) would go into an infinite loop. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13768 a1c6a512-1295-4272-9138-f99709370657 --- apps/root_menu.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'apps') diff --git a/apps/root_menu.c b/apps/root_menu.c index 9858fed35d..24cb80a8b3 100644 --- a/apps/root_menu.c +++ b/apps/root_menu.c @@ -34,6 +34,7 @@ #include "power.h" #include "talk.h" #include "audio.h" +#include "hotswap.h" #if (LCD_DEPTH > 1) || (defined(HAVE_LCD_REMOTE) && (LCD_REMOTE_DEPTH > 1)) #include "backdrop.h" @@ -100,6 +101,12 @@ static int browser(void* param) { strcpy(folder, wps_state.current_track_path); } +#ifdef HAVE_HOTSWAP /* quick hack to stop crashing if you try entering + the browser from the menu when you were in the card + and it was removed */ + else if (strchr(last_folder, '<') && (card_detect() == false)) + strcpy(folder, "/"); +#endif else strcpy(folder, last_folder); break; -- cgit v1.2.3