maskit opened a new issue, #10415:
URL: https://github.com/apache/trafficserver/issues/10415

   Http2ConnectionState.cc
   ```
   1640  if (check_max_concurrent_limit >= 0 && check_count >= 
check_max_concurrent_limit) {
   1641    HTTP2_INCREMENT_THREAD_DYN_STAT(max_streams_stat, this_ethread());
   1642    error = Http2Error(Http2ErrorClass::HTTP2_ERROR_CLASS_STREAM, 
Http2ErrorCode::HTTP2_ERROR_REFUSED_STREAM,
   1643                       "recv headers creating stream beyond 
max_concurrent limit");
   1644    return nullptr;
   1645  }
   1646
        12. dynamic_cast: Dynamic cast to pointer dynamic_cast 
<Http2CommonSession *>(this->session->get_proxy_session()) can return NULL.
        
   CID 1508917 (#1 of 1): Unchecked dynamic_cast (FORWARD_NULL)
   13. var_deref_model: Passing null pointer dynamic_cast <Http2CommonSession 
*>(this->session->get_proxy_session()) to is_outbound, which dereferences it. 
(The dereference happens because this is a virtual function call.)
   1647  ink_release_assert(dynamic_cast<Http2CommonSession 
*>(this->session->get_proxy_session())->is_outbound() == false);
   1648  uint32_t initial_stream_window        = 
this->acknowledged_local_settings.get(HTTP2_SETTINGS_INITIAL_WINDOW_SIZE);
   1649  uint32_t initial_stream_window_target = initial_stream_window;
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@trafficserver.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to