From: Alexander Morozov Date: Mon, 25 Oct 2021 21:21:47 +0000 (+0300) Subject: ICU-21805 Remove useless check X-Git-Tag: release-71-rc~26 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=234cbe2c17034c68d6dd6df09fda79a052f0a238;p=icu ICU-21805 Remove useless check --- diff --git a/icu4c/source/io/ustdio.cpp b/icu4c/source/io/ustdio.cpp index d6eb5cf9ec9..a3cb2a5d9cb 100644 --- a/icu4c/source/io/ustdio.cpp +++ b/icu4c/source/io/ustdio.cpp @@ -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); }