1
0
Fork 0
forked from len0rd/rockbox

Now the 128 bytes limit for search clauses should work.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11183 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Miika Pekkarinen 2006-10-11 04:32:33 +00:00
parent dd7b8fcbe2
commit bba9de2368

View file

@ -312,7 +312,7 @@ static bool read_variable(char *buf, int size)
static int get_format_str(struct display_format *fmt)
{
int ret;
char buf[32];
char buf[128];
memset(fmt, 0, sizeof(struct display_format));
@ -362,7 +362,7 @@ static int get_condition(struct search_instruction *inst)
{
int tag;
int condition;
char buf[32];
char buf[128];
switch (*strp)
{