2
0
mirror of https://github.com/FWGS/xash3d-fwgs synced 2024-11-22 01:45:19 +01:00

filesystem: fix buffer overflow in FS_Read when we pass single byte buffer to it with one character sitting in ungetc

This commit is contained in:
Alibek Omarov 2024-05-15 02:45:01 +03:00
parent f4a77308ec
commit 3917c2589d

View File

@ -2137,6 +2137,10 @@ fs_offset_t FS_Read( file_t *file, void *buffer, size_t buffersize )
buffersize--;
file->ungetc = EOF;
done = 1;
// we had one byte in the buffer, it was ungetc'ed, so exit
if( buffersize == 0 )
return 1;
}
else done = 0;