lkml.org 
[lkml]   [2020]   [Aug]   [3]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH] scsi/aic7xxx/aicasm: Add missing fclose() call
Date
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 --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();

--
2.1.0
\
 
 \ /
  Last update: 2020-08-03 07:18    [W:0.020 / U:0.948 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site