Bug fix. Must close before freeing the structure.

ugfx_release_2.6
inmarket 2014-08-15 02:19:23 +10:00
parent 1105e38414
commit 9b570be049
1 changed files with 1 additions and 1 deletions

View File

@ -175,8 +175,8 @@ static bool_t fatfsOpen(GFILE* f, const char* fname)
static void fatfsClose(GFILE* f)
{
if ((FIL*)f->obj != 0) {
gfxFree( (FIL*)f->obj );
f_close( (FIL*)f->obj );
gfxFree( (FIL*)f->obj );
}
}