Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dispose IDisposables in NativePdbWriter
- The code creates a local variable that's an IDisposable (CustomMetadataWriter), but doesn't call Dispose() on it. - The CustomMetadataWriter class holds two IDisposables (MemoryStream and BinaryStreamWriter), but was only Dispose()ing one of them.
- Loading branch information