From f9641f3b1696e8fa648e85c7bd7a80fb1be5dd66 Mon Sep 17 00:00:00 2001 From: kramm Date: Wed, 12 Nov 2008 10:39:26 +0000 Subject: [PATCH] bugfix in include handler --- src/parser.lex | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/parser.lex b/src/parser.lex index 291fc9c..138e740 100644 --- a/src/parser.lex +++ b/src/parser.lex @@ -38,7 +38,7 @@ static void unescapeString(string_t * tmp) /* fixme - this routine expects the string to be null-terminated */ - for (p1=tmp->str; (p=strchr(p1, '\\')); p1 = p+1) + for (p1=(char*)tmp->str; (p=strchr(p1, '\\')); p1 = p+1) { int nr=2; int new=1; @@ -168,7 +168,10 @@ void handleInclude(char*text, int len) while(len >=1 && (text[0] == ' ' || text[0] == '\t')) { text++;len--; } - while(len >= 1 && (text[len-1] == ' ' || text[len-1] == "\r" || text[len-1] == '\n')) { + while(len >= 1 && + (text[len-1] == ' ' || + text[len-1] == '\r' || + text[len-1] == '\n')) { len--; } if(len >= 2 && text[0] == '"' && text[len-1] == '"') { -- 1.7.10.4