mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-19 21:26:26 +01:00
ace-fluidsynth: fix free_path initialization in save
This commit is contained in:
parent
3364fdd9f3
commit
55dc3113f3
1 changed files with 5 additions and 0 deletions
|
|
@ -858,6 +858,11 @@ save (LV2_Handle instance,
|
||||||
if (!strcmp (features[i]->URI, LV2_STATE__mapPath)) {
|
if (!strcmp (features[i]->URI, LV2_STATE__mapPath)) {
|
||||||
map_path = (LV2_State_Map_Path*)features[i]->data;
|
map_path = (LV2_State_Map_Path*)features[i]->data;
|
||||||
}
|
}
|
||||||
|
#ifdef LV2_STATE__freePath
|
||||||
|
else if (!strcmp (features[i]->URI, LV2_STATE__freePath)) {
|
||||||
|
free_path = (LV2_State_Free_Path*)features[i]->data;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!map_path) {
|
if (!map_path) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue