From: Adam Dickmeiss Date: Mon, 31 Aug 2015 12:33:42 +0000 (+0200) Subject: Fix 0 ptr reference for POST and no Content-Type PAZ-1028 X-Git-Tag: v1.12.3~13 X-Git-Url: http://git.indexdata.com/?p=pazpar2-moved-to-github.git;a=commitdiff_plain;h=4ae1e0582f66acaec33dca2c3b023d47d7f431af Fix 0 ptr reference for POST and no Content-Type PAZ-1028 --- diff --git a/src/http.c b/src/http.c index e6d883a..e2d9f7b 100644 --- a/src/http.c +++ b/src/http.c @@ -607,7 +607,8 @@ struct http_request *http_parse_request(struct http_channel *c, r->content_len = start + len - buf; r->content_buf = buf; - if (!yaz_strcmp_del("application/x-www-form-urlencoded", + if (content_type && + !yaz_strcmp_del("application/x-www-form-urlencoded", content_type, "; ")) { http_parse_arguments(r, c->nmem, r->content_buf);