From: kramm Date: Wed, 12 Nov 2008 10:39:26 +0000 (+0000) Subject: bugfix in include handler X-Git-Tag: release-0-9-0~829 X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=commitdiff_plain;h=f9641f3b1696e8fa648e85c7bd7a80fb1be5dd66 bugfix in include handler --- 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] == '"') {