Commit 4065f17a authored by Vadim Pisarevsky's avatar Vadim Pisarevsky

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

parent 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% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment