| 2882 | } |
| 2883 | |
| 2884 | static void LodePNGText_cleanup(LodePNGInfo* info) { |
| 2885 | size_t i; |
| 2886 | for(i = 0; i != info->text_num; ++i) { |
| 2887 | string_cleanup(&info->text_keys[i]); |
| 2888 | string_cleanup(&info->text_strings[i]); |
| 2889 | } |
| 2890 | lodepng_free(info->text_keys); |
| 2891 | lodepng_free(info->text_strings); |
| 2892 | } |
| 2893 | |
| 2894 | static unsigned LodePNGText_copy(LodePNGInfo* dest, const LodePNGInfo* source) { |
| 2895 | size_t i = 0; |
no test coverage detected