masaori335 commented on issue #6849: URL: https://github.com/apache/trafficserver/issues/6849#issuecomment-640317629
Could you add an assert to make sure the `max_iobuf_size` is in bewteen 0 and MAX_BUFFER_SIZE_INDEX (14) at the startup? ``` max_iobuffer_size = buffer_size_to_index(config_max_iobuffer_size, DEFAULT_BUFFER_SIZES - 1); + ink_release_assert(0 <= max_iobuffer_size && max_iobuffer_size <= MAX_BUFFER_SIZE_INDEX); ``` ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org