mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Fix additional memory leak in process_mapfile
Additional Coverity detected memory leak fix. Submitted by: bret_ketchum@dell.com Reported by: Coverity Reviewed by: cem, emaste MFC after: 2 weeks Sponsored by: Dell EMC Isilon Differential Revision: https://reviews.freebsd.org/D26462
This commit is contained in:
parent
edd1bf93b3
commit
acde2586c9
1 changed files with 2 additions and 0 deletions
|
|
@ -821,6 +821,8 @@ process_mapfile(FILE *outfp, char *fpath)
|
|||
/* TODO Deal with lines longer than 16K */
|
||||
pr_info("%s: Mapfile %s: line %d too long, aborting\n",
|
||||
prog, fpath, line_num);
|
||||
free(line);
|
||||
fclose(mapfp);
|
||||
return -1;
|
||||
}
|
||||
line[strlen(line)-1] = '\0';
|
||||
|
|
|
|||
Loading…
Reference in a new issue