Commit e11333dd authored by Alexander Smorkalov's avatar Alexander Smorkalov

GCC 4.8 warning array subscript is above array bounds fixed.

parent a4c883c0
......@@ -470,6 +470,12 @@ cvFloodFill( CvArr* arr, CvPoint seed_point,
depth = CV_MAT_DEPTH(type);
cn = CV_MAT_CN(type);
if ( (cn != 1) && (cn != 3) )
{
CV_Error( CV_StsBadArg, "Number of channels in input image must be 1 or 3" );
return;
}
if( connectivity == 0 )
connectivity = 4;
else if( connectivity != 4 && connectivity != 8 )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment