Skip to content

Commit

Permalink
* fixing an uninitialized status code when pollsets are not used for…
Browse files Browse the repository at this point in the history
… streams.
  • Loading branch information
Stefan Eissing committed Sep 30, 2021
1 parent 0282368 commit 2bd28f8
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
v2.0.0-rc4
--------------------------------------------------------------------------------
* fixing an uninitialized status code when pollsets are not used for streams.

v2.0.0-rc3
--------------------------------------------------------------------------------
* Added an alternate implementation when polling of file descriptors is
Expand Down
2 changes: 1 addition & 1 deletion mod_http2/h2_mplx.c
Original file line number Diff line number Diff line change
Expand Up @@ -1064,7 +1064,7 @@ static apr_status_t mplx_pollset_create(h2_mplx *m)

static apr_status_t mplx_pollset_add(h2_mplx *m, h2_conn_ctx_t *conn_ctx)
{
apr_status_t rv;
apr_status_t rv = APR_SUCCESS;
const char *name = "";

if (conn_ctx->pfd_out_prod.reqevents) {
Expand Down
2 changes: 1 addition & 1 deletion mod_http2/h2_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* @macro
* Version number of the http2 module as c string
*/
#define MOD_HTTP2_VERSION "2.0.0-rc3-git"
#define MOD_HTTP2_VERSION "2.0.0-rc4-git"

/**
* @macro
Expand Down
2 changes: 1 addition & 1 deletion mod_http2/h2_version.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* @macro
* Version number of the http2 module as c string
*/
#define MOD_HTTP2_VERSION "@PACKAGE_VERSION@-rc3-git"
#define MOD_HTTP2_VERSION "@PACKAGE_VERSION@-rc4-git"

/**
* @macro
Expand Down

0 comments on commit 2bd28f8

Please sign in to comment.