mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-22 07:22:25 +00:00
Close file before exit to avoid potential resource leak
This commit is contained in:
parent
5fbfa8a656
commit
82f07c5626
1 changed files with 1 additions and 0 deletions
|
@ -48,6 +48,7 @@ int main(int argc, char *argv[]) {
|
||||||
|
|
||||||
for (i = 1; i < argc; i++) {
|
for (i = 1; i < argc; i++) {
|
||||||
if ((fp = fopen(argv[i], "rb")) == NULL) {
|
if ((fp = fopen(argv[i], "rb")) == NULL) {
|
||||||
|
fclose(foutput);
|
||||||
exit(EXIT_FAILURE);
|
exit(EXIT_FAILURE);
|
||||||
} else {
|
} else {
|
||||||
fprintf(foutput, "static const std::string translation_file_name_%d = \"%s\";\n", i, argv[i]);
|
fprintf(foutput, "static const std::string translation_file_name_%d = \"%s\";\n", i, argv[i]);
|
||||||
|
|
Loading…
Reference in a new issue