| 2697 | } |
| 2698 | |
| 2699 | static void LodePNGText_cleanup(LodePNGInfo* info) |
| 2700 | { |
| 2701 | size_t i; |
| 2702 | for(i = 0; i < info->text_num; i++) |
| 2703 | { |
| 2704 | string_cleanup(&info->text_keys[i]); |
| 2705 | string_cleanup(&info->text_strings[i]); |
| 2706 | } |
| 2707 | lodepng_free(info->text_keys); |
| 2708 | lodepng_free(info->text_strings); |
| 2709 | } |
| 2710 | |
| 2711 | static unsigned LodePNGText_copy(LodePNGInfo* dest, const LodePNGInfo* source) |
| 2712 | { |
no test coverage detected