Mixer: Fix segfault on attempt to make osc ports for module ports which shouldn't be controllable.
This commit is contained in:
parent
eff5189638
commit
7900ef6add
|
@ -234,7 +234,10 @@ Module::handle_control_changed ( Port *p )
|
||||||
bool
|
bool
|
||||||
Module::Port::connected_osc ( void ) const
|
Module::Port::connected_osc ( void ) const
|
||||||
{
|
{
|
||||||
return _scaled_signal->connected();
|
if ( _scaled_signal )
|
||||||
|
return _scaled_signal->connected();
|
||||||
|
else
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
char *
|
char *
|
||||||
|
|
Loading…
Reference in New Issue