Fix compiler warnings
This commit is contained in:
parent
ab634853df
commit
1b79114d2d
|
@ -383,9 +383,17 @@ static int error_reply(nghttp2_session *session,
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
write(pipefd[1], ERROR_HTML, sizeof(ERROR_HTML) - 1);
|
|
||||||
|
rv = write(pipefd[1], ERROR_HTML, sizeof(ERROR_HTML) - 1);
|
||||||
close(pipefd[1]);
|
close(pipefd[1]);
|
||||||
|
|
||||||
|
if(rv != sizeof(ERROR_HTML)) {
|
||||||
|
close(pipefd[0]);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
stream_data->fd = pipefd[0];
|
stream_data->fd = pipefd[0];
|
||||||
|
|
||||||
if(send_response(session, stream_data->stream_id, hdrs, ARRLEN(hdrs),
|
if(send_response(session, stream_data->stream_id, hdrs, ARRLEN(hdrs),
|
||||||
pipefd[0]) != 0) {
|
pipefd[0]) != 0) {
|
||||||
close(pipefd[0]);
|
close(pipefd[0]);
|
||||||
|
|
|
@ -1941,7 +1941,7 @@ int nghttp2_hd_inflate_new(nghttp2_hd_inflater **inflater_ptr)
|
||||||
*inflater_ptr = malloc(sizeof(nghttp2_hd_inflater));
|
*inflater_ptr = malloc(sizeof(nghttp2_hd_inflater));
|
||||||
|
|
||||||
if(*inflater_ptr == NULL) {
|
if(*inflater_ptr == NULL) {
|
||||||
return NULL;
|
return NGHTTP2_ERR_NOMEM;
|
||||||
}
|
}
|
||||||
|
|
||||||
return nghttp2_hd_inflate_init(*inflater_ptr);
|
return nghttp2_hd_inflate_init(*inflater_ptr);
|
||||||
|
|
Loading…
Reference in New Issue