Fix uninitialized variable.

This commit is contained in:
vng 2011-06-04 16:04:41 +03:00 committed by Alex Zolotarev
parent f9b7368151
commit 23545cbab5

View file

@ -252,10 +252,13 @@ namespace
int const level = scales::GetScaleLevel(r);
size_t errInd;
size_t const emptyInd = size_t(-1);
size_t errInd = emptyInd;
if (!compare_sequence(v2, v1, compare_strings(), errInd))
{
src2.ForEachFeature(r, FindOffset(level, v2[errInd]));
if (errInd != emptyInd)
src2.ForEachFeature(r, FindOffset(level, v2[errInd]));
TEST(false, ("Failed for rect: ", r, "; Scale level = ", level, ". Etalon size = ", v2.size(), ". Index size = ", v1.size()));
}