Fix files not being removed from the pool upon closing

This commit is contained in:
flysand7 2023-07-31 04:19:05 +11:00
parent d9f530fe58
commit 344d9f0398
1 changed files with 1 additions and 0 deletions

View File

@ -80,5 +80,6 @@ int fclose(FILE *file) {
if(status != _RT_STATUS_OK) {
return EOF;
}
cia_pool_free(&_file_pool, file);
return 0;
}