Browse Source

Mixer: Fix segfault on attempt to make osc ports for module ports which shouldn't be controllable.

tags/non-daw-v1.2.0
Jonathan Moore Liles 12 years ago
parent
commit
7900ef6add
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      mixer/src/Module.C

+ 4
- 1
mixer/src/Module.C View File

@@ -234,7 +234,10 @@ Module::handle_control_changed ( Port *p )
bool
Module::Port::connected_osc ( void ) const
{
return _scaled_signal->connected();
if ( _scaled_signal )
return _scaled_signal->connected();
else
return false;
}

char *


Loading…
Cancel
Save