Searched defs:new_strings (Results 1 - 1 of 1) sorted by relevance

/external/zopfli/src/zopflipng/lodepng/
H A Dlodepng.cpp2732 char** new_strings = (char**)(lodepng_realloc(info->text_strings, sizeof(char*) * (info->text_num + 1))); local
2733 if(!new_keys || !new_strings)
2736 lodepng_free(new_strings);
2742 info->text_strings = new_strings;
2807 char** new_strings = (char**)(lodepng_realloc(info->itext_strings, sizeof(char*) * (info->itext_num + 1))); local
2808 if(!new_keys || !new_langtags || !new_transkeys || !new_strings)
2813 lodepng_free(new_strings);
2821 info->itext_strings = new_strings;

Completed in 146 milliseconds