| 2696 | } |
| 2697 | |
| 2698 | static void LodePNGUnknownChunks_cleanup(LodePNGInfo* info) |
| 2699 | { |
| 2700 | unsigned i; |
| 2701 | for(i = 0; i < 3; i++) lodepng_free(info->unknown_chunks_data[i]); |
| 2702 | } |
| 2703 | |
| 2704 | static unsigned LodePNGUnknownChunks_copy(LodePNGInfo* dest, const LodePNGInfo* src) |
| 2705 | { |
no test coverage detected