This addresses the following Coverity warning:
Error: RESOURCE_LEAK (CWE-772): [#def47]
graphviz-2.40.1/cmd/tools/acyclic.c:151: alloc_fn: Storage is returned from allocation function "openFile".
graphviz-2.40.1/cmd/tools/acyclic.c:129:5: alloc_fn: Storage is returned from allocation function "fopen".
graphviz-2.40.1/cmd/tools/acyclic.c:129:5: var_assign: Assigning: "fp" = "fopen(name, mode)".
graphviz-2.40.1/cmd/tools/acyclic.c:139:5: return_alloc: Returning allocated memory "fp".
graphviz-2.40.1/cmd/tools/acyclic.c:151: var_assign: Assigning: "outFile" = storage returned from "openFile(optarg, "w")".
graphviz-2.40.1/cmd/tools/acyclic.c:151: overwrite_var: Overwriting "outFile" in "outFile = openFile(optarg, "w")" leaks the storage that "outFile" points to.
# 149| switch (c) {
# 150| case 'o':
# 151|-> outFile = openFile(optarg, "w");
# 152| break;
# 153| case 'n':
Related to #1464.
while ((c = getopt(argc, argv, ":vno:")) != -1)
switch (c) {
case 'o':
+ if (outFile != NULL)
+ fclose(outFile);
outFile = openFile(optarg, "w");
break;
case 'n':