diff mbox series

scsi/aic7xxx/aicasm: Add missing fclose() call

Message ID 1596431847-1402-1-git-send-email-tangyouling@loongson.cn (mailing list archive)
State Deferred
Headers show
Series scsi/aic7xxx/aicasm: Add missing fclose() call | expand

Commit Message

Youling Tang Aug. 3, 2020, 5:17 a.m. UTC
Add missing fclose() call to close "regdiagfile" in the function stop().

Signed-off-by: Youling Tang <tangyouling@loongson.cn>
---
 drivers/scsi/aic7xxx/aicasm/aicasm.c | 9 +++++++++
 1 file changed, 9 insertions(+)
diff mbox series

Patch

diff --git a/drivers/scsi/aic7xxx/aicasm/aicasm.c b/drivers/scsi/aic7xxx/aicasm/aicasm.c
index 5f474e4..a504058 100644
--- a/drivers/scsi/aic7xxx/aicasm/aicasm.c
+++ b/drivers/scsi/aic7xxx/aicasm/aicasm.c
@@ -722,6 +722,15 @@  stop(const char *string, int err_code)
 		}
 	}
 
+	if (regdiagfile != NULL) {
+		fclose(regdiagfile);
+		if (err_code != 0) {
+			fprintf(stderr, "%s: Removing %s due to error\n",
+				appname, regdiagfilename);
+			unlink(regdiagfilename);
+		}
+	}
+
 	symlist_free(&patch_functions);
 	symtable_close();