This commit is contained in:
dveditz%netscape.com 1999-09-22 07:49:22 +00:00
Родитель 20892968ca
Коммит 16b974b648
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -472,7 +472,7 @@ static REGERR nr_ReadFile(FILEHANDLE fh, REGOFF offset, int32 len, void *buffer)
/* we'll assume the read was OK--this is a gamble but */
/* missing errors will cause fewer problems than too many. */
p = (unsigned char*)buffer + readlen;
while ( (*p == (unsigned char)FILLCHAR) && (p < dbgend) ) {
while ( (p < dbgend) && (*p == (unsigned char)FILLCHAR) ) {
p++;
}