| 7 | jmp_buf Jpeg::setjmp_buffer_; |
| 8 | |
| 9 | void Jpeg::mozjpeg_error_handler(j_common_ptr cinfo) |
| 10 | { |
| 11 | (*cinfo->err->output_message)(cinfo); |
| 12 | |
| 13 | longjmp(setjmp_buffer_, 1); |
| 14 | } |
| 15 | |
| 16 | |
| 17 |
nothing calls this directly
no outgoing calls
no test coverage detected