From: Adam Dickmeiss Date: Tue, 8 Oct 2013 09:41:27 +0000 (+0200) Subject: Fix Content-Type charser fix for non-quoted mode X-Git-Tag: v5.0.2~9 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=11af92513c72d3eb1e618e658b9418a42f4a630f Fix Content-Type charser fix for non-quoted mode --- diff --git a/src/srwutil.c b/src/srwutil.c index 5a4f576..e1c9546 100644 --- a/src/srwutil.c +++ b/src/srwutil.c @@ -242,6 +242,8 @@ static void grab_charset(ODR o, const char *content_type, char **charset) *charset = odr_strdup(o, charset_p); while (charset_p[i] && charset_p[i] != sep) { + if (!sep && strchr("; \n\r", charset_p[i])) + break; if (charset_p[i] == '\\' && charset_p[i+1]) i++; (*charset)[j++] = charset_p[i++];