Minor logic fix in IndexProxy.

This commit is contained in:
Yury Melnichek 2011-02-08 00:27:58 +01:00 committed by Alex Zolotarev
parent 25b5505faa
commit 127f16df1d

View file

@ -151,8 +151,11 @@ private:
}
else
{
if (++m_QueriesSkipped > 8)
Close();
if (m_pIndex)
{
if (++m_QueriesSkipped > 8)
Close();
}
return NULL;
}
}
@ -167,6 +170,17 @@ private:
Close();
}
void Close()
{
if (m_pIndex)
{
// LOG(LINFO, (m_Path));
delete m_pIndex;
m_pIndex = NULL;
m_QueriesSkipped = 0;
}
}
private:
void Open()
@ -181,16 +195,6 @@ private:
}
}
void Close()
{
if (m_pIndex)
{
// LOG(LINFO, (m_Path));
delete m_pIndex;
m_pIndex = NULL;
}
}
m2::RectD m_Rect;
string m_Path; // TODO: Store prefix and suffix of path in MultiIndexAdapter.
IndexT * m_pIndex;