Fix several warnings about uninitialized variables from gcov build

This commit is contained in:
Andrey Kamaev
2013-02-15 17:28:23 +04:00
parent f58dffe31f
commit 3ead4449ad
3 changed files with 11 additions and 9 deletions

View File

@@ -1826,7 +1826,7 @@ void icvGetCutPiece( CvVect64d areaLineCoef1,CvVect64d areaLineCoef2,
/* Collect all candidate point */
CvPoint2D64d candPoints[8];
CvPoint2D64d midPoint;
CvPoint2D64d midPoint = {0, 0};
int numPoints = 0;
int res;
int i;