Fix tautologies in calibfilter.cpp which cause a build failure when using -Werror=address with clang-3.5

http://code.opencv.org/issues/4048

Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
pull/3488/head
Jeremy Huddleston Sequoia 10 years ago
parent c5b6c0456d
commit 35f96d6da7
  1. 6
      modules/legacy/src/calibfilter.cpp

@ -95,11 +95,8 @@ bool CvCalibFilter::SetEtalon( CvCalibEtalonType type, double* params,
Stop(); Stop();
if (latestPoints != NULL)
{
for( i = 0; i < MAX_CAMERAS; i++ ) for( i = 0; i < MAX_CAMERAS; i++ )
cvFree( latestPoints + i ); cvFree( latestPoints + i );
}
if( type == CV_CALIB_ETALON_USER || type != etalonType ) if( type == CV_CALIB_ETALON_USER || type != etalonType )
{ {
@ -523,8 +520,6 @@ void CvCalibFilter::DrawPoints( CvMat** dstarr )
return; return;
} }
if( latestCounts )
{
for( i = 0; i < cameraCount; i++ ) for( i = 0; i < cameraCount; i++ )
{ {
if( dstarr[i] && latestCounts[i] ) if( dstarr[i] && latestCounts[i] )
@ -583,7 +578,6 @@ void CvCalibFilter::DrawPoints( CvMat** dstarr )
} }
} }
} }
}
} }

Loading…
Cancel
Save