shithub: MicroHs

Download patch

ref: dc6404d0f5b10bf72b938db0b51b777d82feb7a5
parent: 062c2474eda5bb58ac91be2a8621e144b858cd22
author: Lennart Augustsson <lennart.augustsson@epicgames.com>
date: Mon Jan 22 15:13:16 EST 2024

Fix pasto.

--- a/src/runtime/bfile.c
+++ b/src/runtime/bfile.c
@@ -472,8 +472,7 @@
   struct BFILE_utf8 *p = (struct BFILE_utf8*)bp;
   CHECKBFILE(bp, getb_utf8);
 
-  p->bfile->flushb(p->bfile);
-  FREE(p);
+  flushb(p->bfile);
 }
 
 void
--