mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-17 18:56:24 +00:00
kconfig: add fflush() before ferror() check
As David Laight pointed out, there is not much point in calling ferror() unless you call fflush() first. Reported-by: David Laight <David.Laight@ACULAB.COM> Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
This commit is contained in:
parent
5c8166419a
commit
868653f421
@ -979,6 +979,7 @@ static int conf_write_autoconf_cmd(const char *autoconf_name)
|
|||||||
|
|
||||||
fprintf(out, "\n$(deps_config): ;\n");
|
fprintf(out, "\n$(deps_config): ;\n");
|
||||||
|
|
||||||
|
fflush(out);
|
||||||
ret = ferror(out); /* error check for all fprintf() calls */
|
ret = ferror(out); /* error check for all fprintf() calls */
|
||||||
fclose(out);
|
fclose(out);
|
||||||
if (ret)
|
if (ret)
|
||||||
@ -1097,6 +1098,7 @@ static int __conf_write_autoconf(const char *filename,
|
|||||||
if ((sym->flags & SYMBOL_WRITE) && sym->name)
|
if ((sym->flags & SYMBOL_WRITE) && sym->name)
|
||||||
print_symbol(file, sym);
|
print_symbol(file, sym);
|
||||||
|
|
||||||
|
fflush(file);
|
||||||
/* check possible errors in conf_write_heading() and print_symbol() */
|
/* check possible errors in conf_write_heading() and print_symbol() */
|
||||||
ret = ferror(file);
|
ret = ferror(file);
|
||||||
fclose(file);
|
fclose(file);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user