Merge pull request #681 from jbohren-forks:fix-ellipse-segfault

This commit is contained in:
Vadim Pisarevsky 2013-03-21 12:22:00 +04:00 committed by OpenCV Buildbot
commit 219bdb9809

View File

@ -890,8 +890,10 @@ void ellipse2Poly( Point center, Size axes, int angle,
pts.push_back(pt);
}
if( pts.size() < 2 )
pts.push_back(pts[0]);
// If there are no points, it's a zero-size polygon
if( pts.size() < 2) {
pts.assign(2,center);
}
}