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:
parent
dd7b8fcbe2
commit
bba9de2368
1 changed files with 2 additions and 2 deletions
|
@ -312,7 +312,7 @@ static bool read_variable(char *buf, int size)
|
||||||
static int get_format_str(struct display_format *fmt)
|
static int get_format_str(struct display_format *fmt)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
char buf[32];
|
char buf[128];
|
||||||
|
|
||||||
memset(fmt, 0, sizeof(struct display_format));
|
memset(fmt, 0, sizeof(struct display_format));
|
||||||
|
|
||||||
|
@ -362,7 +362,7 @@ static int get_condition(struct search_instruction *inst)
|
||||||
{
|
{
|
||||||
int tag;
|
int tag;
|
||||||
int condition;
|
int condition;
|
||||||
char buf[32];
|
char buf[128];
|
||||||
|
|
||||||
switch (*strp)
|
switch (*strp)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue