Home
last modified time | relevance | path

Searched refs:CERROR_BREAK (Results 1 – 1 of 1) sorted by relevance

/lvgl-3.7.0/src/extra/libs/png/
Dlodepng.c178 #define CERROR_BREAK(errorvar, code){\ macro
184 #define ERROR_BREAK(code) CERROR_BREAK(error, code)
4445 if(length < 1 || length > 79) CERROR_BREAK(error, 89); /*keyword too short or long*/ in readChunk_tEXt()
4448 if(!key) CERROR_BREAK(error, 83); /*alloc fail*/ in readChunk_tEXt()
4457 if(!str) CERROR_BREAK(error, 83); /*alloc fail*/ in readChunk_tEXt()
4488 if(length + 2 >= chunkLength) CERROR_BREAK(error, 75); /*no null termination, corrupt?*/ in readChunk_zTXt()
4489 if(length < 1 || length > 79) CERROR_BREAK(error, 89); /*keyword too short or long*/ in readChunk_zTXt()
4492 if(!key) CERROR_BREAK(error, 83); /*alloc fail*/ in readChunk_zTXt()
4497 … if(data[length + 1] != 0) CERROR_BREAK(error, 72); /*the 0 byte indicating compression must be 0*/ in readChunk_zTXt()
4500 if(string2_begin > chunkLength) CERROR_BREAK(error, 75); /*no null termination, corrupt?*/ in readChunk_zTXt()
[all …]