From 40691186511b875dc6acb958cd28765a35e38bac Mon Sep 17 00:00:00 2001 From: Ron Pedde Date: Sun, 27 Feb 2005 04:26:15 +0000 Subject: [PATCH] Timo's fix for short title buffer --- src/query.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/query.c b/src/query.c index 426c63f1..1f9c2c80 100644 --- a/src/query.c +++ b/src/query.c @@ -318,7 +318,7 @@ static query_node_t* match_string(const query_field_t* field, const char** pcursor, const char* query) { - char match[64]; + char match[256]; char* dst = match; int left = sizeof(match); const char* cursor = *pcursor;