File/Dir properties should at least print an error message when something goes wrong
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13780 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
4aeab55f67
commit
76855f0039
1 changed files with 9 additions and 9 deletions
|
@ -308,15 +308,15 @@ enum plugin_status plugin_start(struct plugin_api* api, void* file)
|
|||
return PLUGIN_OK;
|
||||
}
|
||||
|
||||
/* get the info */
|
||||
if(its_a_dir)
|
||||
/* get the info depending on its_a_dir */
|
||||
if(!(its_a_dir ? dir_properties((char*)file):file_properties((char*)file)))
|
||||
{
|
||||
if(!dir_properties((char*)file))
|
||||
return PLUGIN_OK;
|
||||
}
|
||||
else
|
||||
{
|
||||
if(!file_properties((char*)file))
|
||||
/* something went wrong */
|
||||
rb->lcd_clear_display();
|
||||
rb->lcd_puts(0,0,"Failed to gather information");
|
||||
rb->lcd_update();
|
||||
|
||||
rb->action_userabort(TIMEOUT_BLOCK);
|
||||
return PLUGIN_OK;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue