mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2024-12-03 01:22:31 +00:00
Jack: change free to jack_free
Reported by Graham Goode. Fixes crashes on the Windows platform.
This commit is contained in:
parent
bb72c170ad
commit
904ebbe91b
1 changed files with 1 additions and 1 deletions
|
@ -433,7 +433,7 @@ new_fluid_jack_audio_driver2(fluid_settings_t* settings, fluid_audio_func_t func
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
free (jack_ports); /* free jack ports array (not the port values!) */
|
jack_free (jack_ports); /* free jack ports array (not the port values!) */
|
||||||
} else {
|
} else {
|
||||||
FLUID_LOG(FLUID_WARN, "Could not connect to any physical jack ports; fluidsynth is unconnected");
|
FLUID_LOG(FLUID_WARN, "Could not connect to any physical jack ports; fluidsynth is unconnected");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue