fixed OSX indexing never ending

This commit is contained in:
reg_ 2011-12-22 14:07:28 +00:00
parent d0d08c4f96
commit 19c355241c
1 changed files with 2 additions and 1 deletions

View File

@ -164,7 +164,8 @@ namespace kiwix {
if (this->currentArticleOffset <= this->lastArticleOffset) { if (this->currentArticleOffset <= this->lastArticleOffset) {
return true; return true;
} else { } else {
this->stopIndexing(); // commented as it never returns on OSX.
//this->stopIndexing();
return false; return false;
} }
} }