SourceCode/Bond/Servo/CMaster.cpp
@@ -602,6 +602,7 @@
   int CMaster::readCache()
   {
      try {
      CFile file;
      if (!file.Open(m_strFilepath.c_str(), CFile::modeRead)) {
         return -1;
@@ -611,6 +612,13 @@
      serialize(ar);
      ar.Close();
      file.Close();
      }
      catch (CFileException* e) {
         TCHAR szErr[512];
         e->GetErrorMessage(szErr, 512);
         AfxMessageBox(szErr);
         e->Delete();
      }
      return 0;
   }