diff options
Diffstat (limited to 'stdio-common/vfprintf.c')
-rw-r--r-- | stdio-common/vfprintf.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/stdio-common/vfprintf.c b/stdio-common/vfprintf.c index 7714c0e67f..7c2b50c2e5 100644 --- a/stdio-common/vfprintf.c +++ b/stdio-common/vfprintf.c @@ -850,9 +850,7 @@ vfprintf (FILE *s, const CHAR_T *format, va_list ap) /* Lock stream. */ __libc_cleanup_region_start ((void (*) (void *)) &__funlockfile, s); - - if (__flockfile != NULL) - __flockfile (s); + __flockfile (s); /* Write the literal text before the first format. */ outstring ((const UCHAR_T *) format, |