| 3177 | } |
| 3178 | |
| 3179 | static void LodePNGText_cleanup(LodePNGInfo* info) { |
| 3180 | size_t i; |
| 3181 | for(i = 0; i != info->text_num; ++i) { |
| 3182 | string_cleanup(&info->text_keys[i]); |
| 3183 | string_cleanup(&info->text_strings[i]); |
| 3184 | } |
| 3185 | lodepng_free(info->text_keys); |
| 3186 | lodepng_free(info->text_strings); |
| 3187 | } |
| 3188 | |
| 3189 | static unsigned LodePNGText_copy(LodePNGInfo* dest, const LodePNGInfo* source) { |
| 3190 | size_t i = 0; |
no test coverage detected