ICU-21805 Remove useless check

This commit is contained in:
Alexander Morozov 2021-10-26 00:21:47 +03:00 committed by Markus Scherer
parent 55a51fa9bd
commit 234cbe2c17

View file

@ -628,7 +628,7 @@ ufile_getch32(UFILE *f, UChar32 *c32)
/* Fill the buffer if it is empty */
str = &f->str;
if (f && str->fPos + 1 >= str->fLimit) {
if (str->fPos + 1 >= str->fLimit) {
ufile_fill_uchar_buffer(f);
}