Free the itemindexes array in a layer. */
| 1222 | |
| 1223 | /* Free the itemindexes array in a layer. */ |
| 1224 | void msClusterLayerFreeItemInfo(layerObj *layer) |
| 1225 | { |
| 1226 | msFree(layer->iteminfo); |
| 1227 | layer->iteminfo = NULL; |
| 1228 | } |
| 1229 | |
| 1230 | |
| 1231 | /* allocate the iteminfo index array - same order as the item list */ |
no test coverage detected