You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Improve error handling in `fclose`
* Rewrite `freopen` to not duplicate `fclose` and `fopen` code
* Make `freopen` more performant by reusing the file list and possibly
the buffer
* Fix double free in `freopen` on OOM (llvm-mos#354)
Fixllvm-mos#354
Wondering if
free(stream)
can attempt to free the memory just freed byfree(rc)
?The text was updated successfully, but these errors were encountered: