Ignore libjpeg-turbo warnings
This commit is contained in:
parent
2147dba8c4
commit
b868e76a15
12
fastiv-io.c
12
fastiv-io.c
@ -741,10 +741,14 @@ open_libjpeg_turbo(const gchar *data, gsize len, GError **error)
|
|||||||
if (tjDecompress2(dec, (const unsigned char *) data, len,
|
if (tjDecompress2(dec, (const unsigned char *) data, len,
|
||||||
cairo_image_surface_get_data(surface), width, stride, height,
|
cairo_image_surface_get_data(surface), width, stride, height,
|
||||||
pixel_format, TJFLAG_ACCURATEDCT)) {
|
pixel_format, TJFLAG_ACCURATEDCT)) {
|
||||||
set_error(error, tjGetErrorStr2(dec));
|
if (tjGetErrorCode(dec) == TJERR_WARNING) {
|
||||||
cairo_surface_destroy(surface);
|
g_warning("%s", tjGetErrorStr2(dec));
|
||||||
tjDestroy(dec);
|
} else {
|
||||||
return NULL;
|
set_error(error, tjGetErrorStr2(dec));
|
||||||
|
cairo_surface_destroy(surface);
|
||||||
|
tjDestroy(dec);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (pixel_format == TJPF_CMYK) {
|
if (pixel_format == TJPF_CMYK) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user