From: Matthew Fernandez Date: Sun, 13 Sep 2020 03:13:23 +0000 (-0700) Subject: fix resource leakage in gml2gv X-Git-Tag: 2.46.0~20^2^2~73^2~6 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d983cbf5ee02776c588b9e6c0c2d0598842f759e;p=graphviz fix resource leakage in gml2gv This addresses the following Coverity warning: Error: RESOURCE_LEAK (CWE-772): [#def51] graphviz-2.40.1/cmd/tools/gml2gv.c:123: alloc_fn: Storage is returned from allocation function "openFile". graphviz-2.40.1/cmd/tools/gml2gv.c:68:5: alloc_fn: Storage is returned from allocation function "fopen". graphviz-2.40.1/cmd/tools/gml2gv.c:68:5: var_assign: Assigning: "fp" = "fopen(name, mode)". graphviz-2.40.1/cmd/tools/gml2gv.c:79:5: return_alloc: Returning allocated memory "fp". graphviz-2.40.1/cmd/tools/gml2gv.c:123: var_assign: Assigning: "outFile" = storage returned from "openFile(optarg, "w")". graphviz-2.40.1/cmd/tools/gml2gv.c:123: overwrite_var: Overwriting "outFile" in "outFile = openFile(optarg, "w")" leaks the storage that "outFile" points to. # 121| break; # 122| case 'o': # 123|-> outFile = openFile(optarg, "w"); # 124| break; # 125| case ':': Related to #1464. --- diff --git a/cmd/tools/gml2gv.c b/cmd/tools/gml2gv.c index e3462892b..34e0057ea 100644 --- a/cmd/tools/gml2gv.c +++ b/cmd/tools/gml2gv.c @@ -114,6 +114,8 @@ static void initargs(int argc, char **argv) Verbose = 1; break; case 'o': + if (outFile != NULL) + fclose(outFile); outFile = openFile(optarg, "w"); break; case ':':