| 170 | } |
| 171 | |
| 172 | void msFreeLabelPathObj(labelPathObj *path) |
| 173 | { |
| 174 | msFreeShape(&(path->bounds)); |
| 175 | msFree(path->path.point); |
| 176 | msFree(path->angles); |
| 177 | msFree(path); |
| 178 | } |
| 179 | |
| 180 | void msShapeDeleteLine( shapeObj *shape, int line ) |
| 181 | { |
no test coverage detected