* [PATCH 1/2] kconfig: Fix warning: ignoring return value of 'fwrite'
@ 2010-08-04 22:01 Jean Sacren
2010-08-12 22:50 ` Michal Marek
0 siblings, 1 reply; 2+ messages in thread
From: Jean Sacren @ 2010-08-04 22:01 UTC (permalink / raw)
To: Michal Marek; +Cc: Jiri Kosina, Roman Zippel, linux-kbuild
This fix facilitates fwrite() in both confdata.c and expr.c, either it
succeeds in writing, or an error occurs, or the end of file is reached.
Signed-off-by: Jean Sacren <sakiwit@gmail.com>
Cc: stable <stable@kernel.org>
---
scripts/kconfig/confdata.c | 6 +++---
scripts/kconfig/expr.c | 2 +-
scripts/kconfig/lkc.h | 7 +++++++
3 files changed, 11 insertions(+), 4 deletions(-)
diff --git a/scripts/kconfig/confdata.c b/scripts/kconfig/confdata.c
index c4dec80..0fe158c 100644
--- a/scripts/kconfig/confdata.c
+++ b/scripts/kconfig/confdata.c
@@ -505,7 +505,7 @@ int conf_write(const char *name)
while (1) {
l = strcspn(str, "\"\\");
if (l) {
- fwrite(str, l, 1, out);
+ xfwrite(str, l, 1, out);
str += l;
}
if (!*str)
@@ -756,8 +756,8 @@ int conf_write_autoconf(void)
while (1) {
l = strcspn(str, "\"\\");
if (l) {
- fwrite(str, l, 1, out);
- fwrite(str, l, 1, out_h);
+ xfwrite(str, l, 1, out);
+ xfwrite(str, l, 1, out_h);
str += l;
}
if (!*str)
diff --git a/scripts/kconfig/expr.c b/scripts/kconfig/expr.c
index d83f232..b5c47e1 100644
--- a/scripts/kconfig/expr.c
+++ b/scripts/kconfig/expr.c
@@ -1087,7 +1087,7 @@ void expr_print(struct expr *e, void (*fn)(void *, struct symbol *, const char *
static void expr_print_file_helper(void *data, struct symbol *sym, const char *str)
{
- fwrite(str, strlen(str), 1, data);
+ xfwrite(str, strlen(str), 1, data);
}
void expr_fprint(struct expr *e, FILE *out)
diff --git a/scripts/kconfig/lkc.h b/scripts/kconfig/lkc.h
index ce6549c..90fe55a 100644
--- a/scripts/kconfig/lkc.h
+++ b/scripts/kconfig/lkc.h
@@ -80,6 +80,13 @@ void sym_set_change_count(int count);
void sym_add_change_count(int count);
void conf_set_all_new_symbols(enum conf_def_mode mode);
+/* confdata.c and expr.c */
+static inline void xfwrite(const void *str, size_t len, size_t count, FILE *out)
+{
+ if (fwrite(str, len, count, out) < count)
+ fprintf(stderr, "\nError in writing or end of file.\n");
+}
+
/* kconfig_load.c */
void kconfig_load(void);
--
1.7.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH 1/2] kconfig: Fix warning: ignoring return value of 'fwrite'
2010-08-04 22:01 [PATCH 1/2] kconfig: Fix warning: ignoring return value of 'fwrite' Jean Sacren
@ 2010-08-12 22:50 ` Michal Marek
0 siblings, 0 replies; 2+ messages in thread
From: Michal Marek @ 2010-08-12 22:50 UTC (permalink / raw)
To: Jean Sacren; +Cc: Jiri Kosina, Roman Zippel, linux-kbuild
On Wed, Aug 04, 2010 at 04:01:02PM -0600, Jean Sacren wrote:
> This fix facilitates fwrite() in both confdata.c and expr.c, either it
> succeeds in writing, or an error occurs, or the end of file is reached.
>
> Signed-off-by: Jean Sacren <sakiwit@gmail.com>
> Cc: stable <stable@kernel.org>
> ---
> scripts/kconfig/confdata.c | 6 +++---
> scripts/kconfig/expr.c | 2 +-
> scripts/kconfig/lkc.h | 7 +++++++
> 3 files changed, 11 insertions(+), 4 deletions(-)
I applied this and the second patch (sorry for the delay), but I dropped
the Cc: stable line. It's just a warning, nothing critical, and the
context is different in released kernels, so why bother Greg with
manually resolving conflicts.
Michal
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2010-08-12 22:52 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-04 22:01 [PATCH 1/2] kconfig: Fix warning: ignoring return value of 'fwrite' Jean Sacren
2010-08-12 22:50 ` Michal Marek
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox