Explorar el Código

XMLReaderData() now check for error.

adeniz_1
Alban Deniz hace 1 año
padre
commit
21917e05b5
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. 2
    0
      XMLReader.cpp

+ 2
- 0
XMLReader.cpp Ver fichero

@@ -1229,6 +1229,8 @@ XMLReaderData::XMLReaderData(const string FileName) :
ifstream CFGFile(FileName.c_str()); // Open the file.
CFGFile.seekg(0,ios::end); // Seek to the end
myBufferSize = CFGFile.tellg(); // to find out what size it is.
if (myBufferSize < 0)
throw;
myDataBuffer = new char[myBufferSize + 1]; // Make a new buffer the right size,
// including null byte at end.
CFGFile.seekg(0,ios::beg); // Seek to the beginning and

Cargando…
Cancelar
Guardar