mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 06:25:30 +00:00
ICU-21805 Remove useless check
This commit is contained in:
parent
55a51fa9bd
commit
234cbe2c17
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue