From 4ae1e0582f66acaec33dca2c3b023d47d7f431af Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Mon, 31 Aug 2015 14:33:42 +0200 Subject: [PATCH] Fix 0 ptr reference for POST and no Content-Type PAZ-1028 --- src/http.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); -- 1.7.10.4