Fixing memory leaks is good thing, but I want to know apart from memory issues, does Memory leak fixes also helps to improve the performance.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Generally, yes. The main reason is that with memory leaks, your program is constantly going to be getting new memory from the system which won’t be in cache. If you free memory properly, you’ll get that same memory back shortly, and it will already be in cache.