mirror of https://github.com/PCSX2/pcsx2.git
Avoid leaking `romdir` file handle
This commit is contained in:
parent
8a43789db5
commit
f1d5a0a1b3
|
@ -38,6 +38,8 @@ int main(int argc, char *argv[]) {
|
|||
|
||||
extinfo = fopen("EXTINFO", "wb");
|
||||
if (extinfo == NULL) {
|
||||
/* Don't leak the opened romdir */
|
||||
fclose(romdir);
|
||||
printf("failed to create EXTINFO\n");
|
||||
return 1;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue