| 329 | } |
| 330 | |
| 331 | static void avifPropertyArrayDestroy(avifPropertyArray * array) |
| 332 | { |
| 333 | for (size_t i = 0; i < array->count; ++i) { |
| 334 | if (array->prop[i].isOpaque) { |
| 335 | avifRWDataFree(&array->prop[i].u.opaque.boxPayload); |
| 336 | } |
| 337 | } |
| 338 | avifArrayDestroy(array); |
| 339 | } |
| 340 | |
| 341 | static void avifSampleTableDestroy(avifSampleTable * sampleTable) |
| 342 | { |
no test coverage detected