From: Mathieu Malaterre Date: Tue, 20 Dec 2011 17:11:22 +0000 (+0000) Subject: Fix strange line, as reported by lockalsash (gmail.com) X-Git-Tag: version.2.0~529 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8ff1ba325dc1f1530fd33adb042bdc13da01a156;p=openjpeg Fix strange line, as reported by lockalsash (gmail.com) --- diff --git a/libopenjpeg/tcd.c b/libopenjpeg/tcd.c index 06724c84..d5086e6d 100644 --- a/libopenjpeg/tcd.c +++ b/libopenjpeg/tcd.c @@ -718,7 +718,7 @@ void tcd_malloc_decode(opj_tcd_t *tcd, opj_image_t * image, opj_cp_t * cp) { tilec->y1 = int_ceildiv(tile->y1, image->comps[i].dy); x0 = j == 0 ? tilec->x0 : int_min(x0, (unsigned int) tilec->x0); - y0 = j == 0 ? tilec->y0 : int_min(y0, (unsigned int) tilec->x0); + y0 = j == 0 ? tilec->y0 : int_min(y0, (unsigned int) tilec->y0); x1 = j == 0 ? tilec->x1 : int_max(x1, (unsigned int) tilec->x1); y1 = j == 0 ? tilec->y1 : int_max(y1, (unsigned int) tilec->y1); }