Fix memory leak in ACE::HTTPS::Session_T#2508
Conversation
Seems close_streams() and close_connection() were incorrectly put in constructor instead of destructor.
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review infoConfiguration used: Repository UI Review profile: CHILL Plan: Pro 📒 Files selected for processing (1)
WalkthroughResource cleanup logic in an HTTPS session class was relocated from the constructor to the destructor. Previously, close_streams() and close_connection() were called during object construction; these calls now execute during object destruction instead. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes Poem
🚥 Pre-merge checks | ✅ 2 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (2 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Tip Try Coding Plans. Let us write the prompt for your AI agent so you can ship faster (with fewer bugs). Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
Thanks! |
Seems close_streams() and close_connection() were incorrectly put in constructor instead of destructor.
Summary by CodeRabbit