fix bug of invalid file read - a garbage is in the end of string data

This commit is contained in:
inv 2013-12-06 05:57:02 +00:00
parent 298eadbd92
commit fb394a9bd6

View File

@ -24,9 +24,11 @@ namespace XAO
rstr.open(filePath.c_str());
rstr.seekg(0, rstr.end); // go to the end
length = rstr.tellg(); // report location (this is the length)
printf("---------------------------VSR: length=%ld\n", length);
rstr.seekg(0, rstr.beg); // go back to the beginning
char* txt = new char[length]; // allocate memory for a buffer of appropriate dimension
char* txt = new char[length+1]; // allocate memory for a buffer of appropriate dimension
rstr.read(txt, length); // read the whole file into the buffer
txt[length] = '\0';
rstr.close();
return txt;