| 2661 | } |
| 2662 | |
| 2663 | static void LodePNGUnknownChunks_cleanup(LodePNGInfo* info) |
| 2664 | { |
| 2665 | unsigned i; |
| 2666 | for(i = 0; i < 3; i++) lodepng_free(info->unknown_chunks_data[i]); |
| 2667 | } |
| 2668 | |
| 2669 | static unsigned LodePNGUnknownChunks_copy(LodePNGInfo* dest, const LodePNGInfo* src) |
| 2670 | { |
no test coverage detected