mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2025-04-22 07:30:50 +00:00
Use FLUID_FREE instead of free
This commit is contained in:
parent
500931bd33
commit
78be6f7fe1
1 changed files with 2 additions and 2 deletions
|
@ -1730,12 +1730,12 @@ void fluid_sf2_close(SFData *sf, const fluid_file_callbacks_t *fcbs)
|
|||
fcbs->fclose(sf->sffd);
|
||||
|
||||
if (sf->fname)
|
||||
free(sf->fname);
|
||||
FLUID_FREE(sf->fname);
|
||||
|
||||
p = sf->info;
|
||||
while (p)
|
||||
{
|
||||
free(p->data);
|
||||
FLUID_FREE(p->data);
|
||||
p = fluid_list_next(p);
|
||||
}
|
||||
delete_fluid_list(sf->info);
|
||||
|
|
Loading…
Reference in a new issue