mirror of https://github.com/python/cpython
gh-98872: Fix a possible resource leak in Python 3.11.0 (GH-99047)
Issue: #98872 Automerge-Triggered-By: GH:kumaraditya303
This commit is contained in:
parent
b4d54a332e
commit
4e5f2db6f2
|
@ -0,0 +1 @@
|
||||||
|
Fix a possible fd leak in ``Programs/_freeze_module.c`` introduced in Python 3.11.
|
|
@ -194,6 +194,7 @@ write_frozen(const char *outpath, const char *inpath, const char *name,
|
||||||
|
|
||||||
if (ferror(outfile)) {
|
if (ferror(outfile)) {
|
||||||
fprintf(stderr, "error when writing to '%s'\n", outpath);
|
fprintf(stderr, "error when writing to '%s'\n", outpath);
|
||||||
|
fclose(outfile);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
fclose(outfile);
|
fclose(outfile);
|
||||||
|
|
Loading…
Reference in New Issue