Tagged Questions
2
votes
3answers
560 views
SPDispose false positive
I got many warnings from the SPDispose checker like this:
ID: SPDisposeCheckID_140
Module: xx.xx.dll
Method: xx.xx.Layouts.xx.UpdateWorkspace.Page_Load(System.Object,System.EventArgs)
Statement: ...
2
votes
2answers
81 views
SPDisposeChecker, is this a false positive?
We have the following code:
foreach (SPWeb website in collectionOfWebSites)
{
// Some code, no dispose of website
}
SPDisposeChecker is reporting it as a memory leak. Should ...