You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@trafficserver.apache.org by GitBox <gi...@apache.org> on 2021/05/18 00:43:17 UTC

[GitHub] [trafficserver] shinrich commented on issue #7851: Crashes on what appears to be double freeing SSLNetVConnection objects

shinrich commented on issue #7851:
URL: https://github.com/apache/trafficserver/issues/7851#issuecomment-842737557


   I think it may be due to NetHandler::manage_keep_alive_queue.  From within that function it calls
   
   ```
   _close_ne(ne, now, handle_event, closed, total_idle_time, total_idle_count);
   ```
   Which in turn calls
   ```
   if (ne->closed) {
       free_netevent(ne);
       ++closed;
     } 
   ```
   Even if the recursion count is greater than 0.


-- 
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:
users@infra.apache.org