This commit is contained in:
Kovid Goyal 2017-09-28 20:26:44 +05:30
parent 933621b038
commit 6297c9a719
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -193,7 +193,7 @@ read_png_error_handler(png_structp png_ptr, png_const_charp msg) {
jmp_buf *jb;
set_add_response("EBADPNG", msg);
jb = png_get_error_ptr(png_ptr);
if (jb == NULL) fatal("read_png_error_handler: could not retrieve jump_buf");
if (jb == NULL) fatal("read_png_error_handler: could not retrieve jmp_buf");
longjmp(*jb, 1);
}