Merge pull request #58 from QuentinPerez/fix-null-dereference

fix-null-dereference
This commit is contained in:
Joris Vink 2015-05-19 06:35:08 +02:00
commit e4e9a2f81e
1 changed files with 2 additions and 2 deletions

View File

@ -1211,7 +1211,7 @@ http_response_spdy(struct http_request *req, struct connection *c,
net_send_queue(c, d, len, s, NETBUF_LAST_CHAIN);
}
if (req->method == HTTP_METHOD_HEAD ||
if (req != NULL && req->method == HTTP_METHOD_HEAD ||
(len == 0 && !(s->flags & SPDY_NO_CLOSE))) {
spdy_frame_send(c, SPDY_DATA_FRAME, FLAG_FIN, 0, s, 0);
spdy_stream_close(c, s, SPDY_KEEP_NETBUFS);
@ -1269,7 +1269,7 @@ http_response_normal(struct http_request *req, struct connection *c,
}
}
if (status != 204 && status >= 200 &&
if (req != NULL && status != 204 && status >= 200 &&
!(req->flags & HTTP_REQUEST_NO_CONTENT_LENGTH))
kore_buf_appendf(header_buf, "content-length: %d\r\n", len);