`cat`: close file descriptor in `concatFileToStdoutWithOptions`.

otherwise, it was causing memory leaks.
master
Drake 3 years ago
parent 0ab66c2a27
commit 38705fa09b
No known key found for this signature in database
GPG Key ID: 9B83455BD94F12A3

@ -54,6 +54,7 @@ static int concatFileToStdoutWithOptions(char *file, bool showLineEnds) {
printf("%s", contents);
}
free(contents);
fclose(fp);
return 0;
}

Loading…
Cancel
Save