Prevent a stack overflow on iPod 5.5G due to increased sector size.
Full patch coming at weekend. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11629 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
e997c5287c
commit
cd605cffa3
1 changed files with 2 additions and 2 deletions
|
@ -194,7 +194,7 @@ static int rotate_index(const struct playlist_info* playlist, int index);
|
|||
#define PLAYLIST_LOAD_POINTERS 1
|
||||
|
||||
static struct event_queue playlist_queue;
|
||||
static long playlist_stack[(DEFAULT_STACK_SIZE + 0x400)/sizeof(long)];
|
||||
static long playlist_stack[(DEFAULT_STACK_SIZE + 0x800)/sizeof(long)];
|
||||
static const char playlist_thread_name[] = "playlist cachectrl";
|
||||
#endif
|
||||
|
||||
|
@ -1169,7 +1169,7 @@ static void playlist_thread(void)
|
|||
flush_cached_control(playlist);
|
||||
mutex_unlock(&playlist->control_mutex);
|
||||
}
|
||||
|
||||
|
||||
sync_control(playlist, true);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue