提交 4065f17a 编写于 作者: V Vadim Pisarevsky

fixed uninitialized variable use in writeGraph (reported by valgrind when running opencv_test_core)

上级 5791e89e
......@@ -4334,7 +4334,7 @@ icvWriteGraph( CvFileStorage* fs, const char* name,
{
int fmt_pairs[CV_FS_MAX_FMT_PAIRS], fmt_pair_count;
fmt_pair_count = icvDecodeFormat( dt, fmt_pairs, CV_FS_MAX_FMT_PAIRS );
if( fmt_pair_count > 2 || CV_ELEM_SIZE(fmt_pairs[2*2+1]) >= (int)sizeof(double))
if( fmt_pair_count > 2 && CV_ELEM_SIZE(fmt_pairs[2*2+1]) >= (int)sizeof(double))
edge_user_align = sizeof(double);
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册