modpost: do not write out any file when error occurred
authorMasahiro Yamada <masahiroy@kernel.org>
Sun, 24 Apr 2022 19:07:46 +0000 (04:07 +0900)
committerMasahiro Yamada <masahiroy@kernel.org>
Sat, 7 May 2022 18:16:59 +0000 (03:16 +0900)
If an error occurs, modpost will fail anyway. Do not write out
any content (, which might be invalid).

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Reviewed-by: Nick Desaulniers <ndesaulniers@google.com>
scripts/mod/modpost.c

index 141370e..f0d48f6 100644 (file)
@@ -2333,6 +2333,9 @@ static void write_buf(struct buffer *b, const char *fname)
 {
        FILE *file;
 
+       if (error_occurred)
+               return;
+
        file = fopen(fname, "w");
        if (!file) {
                perror(fname);