Windows fix

This commit is contained in:
alexeevdv
2015-02-15 13:00:18 +03:00
parent ac12f7647c
commit 6afec421eb
+2 -3
View File
@@ -23,7 +23,6 @@ void CArchive::WriteString(const char * value)
ULONG CArchive::Read(char *buffer, ULONG size) ULONG CArchive::Read(char *buffer, ULONG size)
{ {
ULONG count; _file->_istream.read(buffer, size);
count = _file->_istream.readsome(buffer, size); return size;
return count;
} }