![]() |
Memory Leakage
Hi,
I am developing an embedded system using C. I have a limited memory, so I sometimes run into a problem whereby my system becomes totally trashed due to memory leakage. So I am asking for suggestions and recommendations about the sources of memory leakage and how I can avoid them. |
Re: Memory Leakage
I hope this article will help you
http://mariusbancila.ro/blog/2010/07...-memory-leaks/ |
Re: Memory Leakage
Make sure that *EVERY* memory allocation is matched by a memory free, WITHOUT EXCEPTION.
Then it won't leak. |
Re: Memory Leakage
I wish want to further the discussion. When we have something like this:
Code:
char myFunc(char* a, char* b) |
Re: Memory Leakage
There is one situation where you need to free memory, which is where you have allocated it. If you have allocated it then you MUST deallocate it (when you've finished with it). If you have not allocated it then you MUST NOT deallocate it. That's all there is to it.
It's good practice to allocate and deallocate memory within the same function wherever possible, e.g.: Code:
void doSomething() |
Re: Memory Leakage
u can use deleaker or similar debugger for search gdi and memory leaks.
|
| All times are GMT +5.5. The time now is 07:46. |