Home
last modified time | relevance | path

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

/external/libpng/contrib/oss-fuzz/
Dnewcc15 // 4. adding read_end_info() and creating an end_info structure.
/external/ImageMagick/coders/
Dpng.c2201 *end_info, in ReadOnePNGImage() local
2389 end_info=png_create_info_struct(ping); in ReadOnePNGImage()
2391 if (end_info == (png_info *) NULL) in ReadOnePNGImage()
2406 png_destroy_read_struct(&ping,&ping_info,&end_info); in ReadOnePNGImage()
3407 png_destroy_read_struct(&ping,&ping_info,&end_info); in ReadOnePNGImage()
3429 png_destroy_read_struct(&ping,&ping_info,&end_info); in ReadOnePNGImage()
3780 png_read_end(ping,end_info); in ReadOnePNGImage()
3791 png_destroy_read_struct(&ping,&ping_info,&end_info); in ReadOnePNGImage()
3895 status = png_get_text(ping,end_info,&text,&num_text) != 0 ? in ReadOnePNGImage()
4202 read_tIME_chunk(image,ping,end_info,exception); in ReadOnePNGImage()
[all …]
/external/libpng/
Dlibpng-manual.txt144 IDAT chunks and another (called "end_info" below) for things after them.
422 &end_info);
427 Pass (png_infopp)NULL instead of &end_info if you didn't create
428 an end_info structure.
2406 png_infop end_info = png_create_info_struct(png_ptr);
2408 if (!end_info)
2415 png_read_end(png_ptr, end_info);
2418 but you can pass NULL, avoiding the need to create an end_info structure.
2433 &end_info);
2435 or, if you didn't create an end_info structure,
DCHANGES6038 Add end_info structure and png_read_end() to the libpng fuzzer.