Fix 0 ptr reference for POST and no Content-Type PAZ-1028
[pazpar2-moved-to-github.git] / 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);