Tagged Questions

9
votes
17answers
495 views

.NET Resource Leak Gotchas

There are several ways that developers can get caught out by unintentional resource leaks in .NET. I thought it would be useful to gather them in one place. Please add yours with one answer per item, ...
3
votes
1answer
61 views

Memory leak issue. Instument shows error in line 2

NSArray *arrAllAttributes = [[NSArray alloc]init]; arrAllAttributes = [app mtdAllCountry]; [arrAllAttributes retain]; for(int i = 0; i<[arrAllAttributes count]; i++) { NSDictionary *dictTemp1 = ...