Memory leaks in C++ is a huge production risk
This code insight counts a violation each time a Call free or delete to free the memory. List all locations where a memory allocation is created (malloc/calloc/realloc, new, and std::auto_ptr.release()) that is not freed (using free or delete). void f() { int *array = calloc(1024, sizeof(int)); /* Do some work with array here */ // VIOLATION: Memory not freed } Remedy void f() { int *array = calloc(1024, sizeof(int)); /* Do some work with array here */ free(array); // REMEDIATION }Why you should care
Memory leaks ultimately mean available memory is gradually reduced leading to various problems ranging from poor responsiveness to a system/application crashBusiness Impacts
[nz_btn text="Production Risk" target="_self" animate="false" animation_type="ghost" color="pink" size="small" shape="rounded" type="normal" hover_normal="opacity" hover_ghost="fill" link="http://casthighlight.wpengine.com/category/product/indicators-methodology/innovation/" icon="icon-office"]CAST recommendations
References
http://en.wikipedia.org/wiki/Memory_leakAbout CAST and Highlight’s Code Insights
Over the last 25 years, CAST has leveraged unique knowledge on software quality measurement by analyzing thousands of applications and billions of lines of code. Based on this experience and community standards on programming best practices, Highlight implements hundreds of code insights across 15+ technologies to calculate health factors of a software.
For reference only. For the complete details please refer the original article
https://doc.casthighlight.com/alt_mallocfreeuses_count-one-violation-each-time-malloc-or-free-keyword-is-encountered/
https://doc.casthighlight.com/alt_mallocfreeuses_count-one-violation-each-time-malloc-or-free-keyword-is-encountered/
Comments