I was also suffering from the same problem and finally found out the cause and solution.

From FileReaderThread.cpp, after line 775, add the following lines:

// Open the file we're interested in to see if it has changed size.
dwNewFileSize = GetFileSizeBytes (szFileName); // line 775
if (dwNewFileSize == -1)
{
continue;
}