Fix 0 ptr reference for POST and no Content-Type PAZ-1028
authorAdam Dickmeiss <adam@indexdata.dk>
Mon, 31 Aug 2015 12:33:42 +0000 (14:33 +0200)
committerAdam Dickmeiss <adam@indexdata.dk>
Mon, 31 Aug 2015 12:33:42 +0000 (14:33 +0200)
src/http.c

index e6d883a..e2d9f7b 100644 (file)
@@ -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);