Quote:
Originally Posted by TheDarkWraith
highly doubt it. Mem leaks usually are from pointers that are reassigned without releasing them first (thus nothing points to the object originally pointed to and thus no way to release it). This only applies to unmanaged apps (managed apps use non-deterministic finalization at least .NET languages do)
|
I was about to say the same thing .