Ticket #1614 (closed defect: fixed)
Memory Leak with OSR.SpatialReference
| Reported by: | jbeverage | Owned by: | tamas |
|---|---|---|---|
| Priority: | normal | Milestone: | 1.4.2 |
| Component: | CSharpBindings | Version: | |
| Severity: | major | Keywords: | |
| Cc: |
Description
Running the following simple loop makes memory go through the roof even though Dispose is being called.
for (int i = 0; i < 1000000; ++i) {
using (SpatialReference? dst = new SpatialReference?("")) {
//Do something with SpatialReference? here
}
}
Change History
Note: See
TracTickets for help on using
tickets.
