Skip to content

Commit

Permalink
Fixed bug CORE-5760 : Server process crashes while restoring database
Browse files Browse the repository at this point in the history
  • Loading branch information
hvlad committed Feb 26, 2018
1 parent 4023436 commit 5a92f51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/classes/vector.h
Expand Up @@ -268,7 +268,7 @@ class MarkIterator
const bool at_begin = (m_begin == m_curr);
m_curr++;

while (Marker::isMarked(m_curr) && m_curr < m_end)
while (m_curr < m_end && Marker::isMarked(m_curr))
m_curr++;

if (m_curr == m_end)
Expand Down

0 comments on commit 5a92f51

Please sign in to comment.