mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 23:05:04 +01:00
Initialize uninitalized variables
This commit is contained in:
parent
0225087342
commit
db16792580
2 changed files with 2 additions and 2 deletions
|
|
@ -145,7 +145,7 @@ IOPlug::set_state (const XMLNode& node, int version)
|
|||
return -1;
|
||||
}
|
||||
|
||||
bool any_vst;
|
||||
bool any_vst = false;
|
||||
_plugin = find_and_load_plugin (_session, node, type, unique_id, any_vst);
|
||||
|
||||
if (!_plugin) {
|
||||
|
|
|
|||
|
|
@ -294,7 +294,7 @@ RegionFxPlugin::set_state (const XMLNode& node, int version)
|
|||
return -1;
|
||||
}
|
||||
|
||||
bool any_vst;
|
||||
bool any_vst = false;
|
||||
|
||||
uint32_t count = 1;
|
||||
node.get_property ("count", count);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue