Opened 12 years ago
Closed 12 years ago
#370 closed defect (fixed)
Memory leak
Reported by: | steve | Owned by: | ole |
---|---|---|---|
Priority: | normal | Milestone: | |
Component: | Appearance and visualisation | Version: | |
Severity: | normal | Keywords: | |
Cc: |
Description
On line 40 of mesh_factory_ext.c there is a malloc:
vertices = malloc( (m+1)*(n+1)*sizeof(long) );
without a corresponding free.
Change History (1)
comment:1 Changed 12 years ago by steve
- Resolution set to fixed
- Status changed from new to closed
Note: See
TracTickets for help on using
tickets.
A free has been added.