sudheerv commented on issue #6849:
URL: https://github.com/apache/trafficserver/issues/6849#issuecomment-649532348


   > 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);
   > ```
   
   @masaori335 Just fyi, It looks like the root cause of the corruption of 
globals is #6950 - finally was able to run ASAN that could catch this.


----------------------------------------------------------------
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


Reply via email to