This commit is contained in:
Glenn Maynard
2004-06-06 23:20:44 +00:00
parent 1aa5f95d09
commit b148baa657
+5 -9
View File
@@ -78,16 +78,12 @@ unsigned int RageFileStore::CopyRangeTo2(BufferedTransformation &target, unsigne
byte result; byte result;
m_file.Read( &result, 1 ); m_file.Read( &result, 1 );
m_file.Seek( current ); m_file.Seek( current );
if (m_file.AtEOF()) if( m_file.AtEOF() )
{
return 0; return 0;
}
else unsigned int blockedBytes = target.ChannelPut(channel, byte(result), blocking);
{ begin += 1-blockedBytes;
unsigned int blockedBytes = target.ChannelPut(channel, byte(result), blocking); return blockedBytes;
begin += 1-blockedBytes;
return blockedBytes;
}
} }
// TODO: figure out what happens on cin // TODO: figure out what happens on cin