You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ic...@apache.org on 2021/04/23 08:01:56 UTC

svn commit: r1889119 - in /httpd/httpd/trunk/modules/http2: h2_stream.c h2_version.h

Author: icing
Date: Fri Apr 23 08:01:56 2021
New Revision: 1889119

URL: http://svn.apache.org/viewvc?rev=1889119&view=rev
Log:
mod_htt2: fix incomplete sync with latest changes in github, adjust version number.


Modified:
    httpd/httpd/trunk/modules/http2/h2_stream.c
    httpd/httpd/trunk/modules/http2/h2_version.h

Modified: httpd/httpd/trunk/modules/http2/h2_stream.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/http2/h2_stream.c?rev=1889119&r1=1889118&r2=1889119&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/http2/h2_stream.c (original)
+++ httpd/httpd/trunk/modules/http2/h2_stream.c Fri Apr 23 08:01:56 2021
@@ -638,7 +638,7 @@ void h2_stream_set_request(h2_stream *st
 
 static void set_error_response(h2_stream *stream, int http_status)
 {
-    if (!h2_stream_is_ready(stream)) {
+    if (!h2_stream_is_ready(stream) && stream->rtmp) {
         stream->rtmp->http_status = http_status;
     }
 }

Modified: httpd/httpd/trunk/modules/http2/h2_version.h
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/http2/h2_version.h?rev=1889119&r1=1889118&r2=1889119&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/http2/h2_version.h (original)
+++ httpd/httpd/trunk/modules/http2/h2_version.h Fri Apr 23 08:01:56 2021
@@ -27,7 +27,7 @@
  * @macro
  * Version number of the http2 module as c string
  */
-#define MOD_HTTP2_VERSION "1.15.17"
+#define MOD_HTTP2_VERSION "1.15.18"
 
 /**
  * @macro
@@ -35,7 +35,7 @@
  * release. This is a 24 bit number with 8 bits for major number, 8 bits
  * for minor and 8 bits for patch. Version 1.2.3 becomes 0x010203.
  */
-#define MOD_HTTP2_VERSION_NUM 0x010f11
+#define MOD_HTTP2_VERSION_NUM 0x010f12
 
 
 #endif /* mod_h2_h2_version_h */