This is the bug/patch tracker for Rockbox. Click here for more information.
Quick links: Bugs · Patches · Rockbox frontpage
FS#5466 - Exiting TagCache may trap you inside a directory
|
DetailsIf you haven't generated tagcache, and switch from TagCache to fileview after having attempted to use tagcache, you will find yourself in a directory you can't exit from.
Steps to reproduce: 1. Go into a directory 2. Switch to ID3 Database view 3. Attempt to enter a virtual folder, a splash will tell TagCache not ready (with another splash below it, don't know what that says) 4. Switch back to file view Now you can't exit the directory by pressing left on the joystick (or whichever button is used for this) Exists (at least) on H120 target and H300 sim. |
This task depends upon
Closed by Hristo Kovachev (bger)
Wednesday, 12 July 2006, 08:51 GMT+1
Reason for closing: Accepted
Additional comments about closing: In CVS as of today
Wednesday, 12 July 2006, 08:51 GMT+1
Reason for closing: Accepted
Additional comments about closing: In CVS as of today
line 626 of tree.c needs to be changed from if (tc.dirlevel == 0) to if (!strcmp(currdir,"/") && tc.dirlevel == 0)
the problem is with this the tc.dirlevel can become negative which may cause other problems?? my limited testing on the h300 sin didnt show any problems with this fix tho..