From e87355463f27702f5c398b22b05021f8290e5329 Mon Sep 17 00:00:00 2001 From: Andy Maloney Date: Sat, 26 Jan 2013 16:38:01 -0500 Subject: [PATCH] {highgui} Fix copy-paste error in conditional --- modules/highgui/src/grfmt_jpeg2000.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/highgui/src/grfmt_jpeg2000.cpp b/modules/highgui/src/grfmt_jpeg2000.cpp index f190835..d9080e5 100644 --- a/modules/highgui/src/grfmt_jpeg2000.cpp +++ b/modules/highgui/src/grfmt_jpeg2000.cpp @@ -212,7 +212,7 @@ bool Jpeg2KDecoder::readData( Mat& img ) cmptlut[0] = jas_image_getcmptbytype( image, JAS_IMAGE_CT_RGB_B ); cmptlut[1] = jas_image_getcmptbytype( image, JAS_IMAGE_CT_RGB_G ); cmptlut[2] = jas_image_getcmptbytype( image, JAS_IMAGE_CT_RGB_R ); - if( cmptlut[0] < 0 || cmptlut[1] < 0 || cmptlut[0] < 0 ) + if( cmptlut[0] < 0 || cmptlut[1] < 0 || cmptlut[2] < 0 ) result = false; ncmpts = 3; } -- 2.7.4