Browse Source

MIxer/Chain: Fix race condition.

tags/non-daw-v1.2.0
Jonathan Moore Liles 11 years ago
parent
commit
47f15d9937
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      mixer/src/Chain.C

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

@@ -86,7 +86,8 @@ extern char *instance_name;
Chain::Chain ( ) : Fl_Group( 0, 0, 100, 100, "")

{
_deleting = false;
/* not really deleting here, but reusing this variable */
_deleting = true;

int X = 0;
int Y = 0;
@@ -161,6 +162,8 @@ Chain::Chain ( ) : Fl_Group( 0, 0, 100, 100, "")
end();

log_create();

_deleting = false;
}

Chain::~Chain ( )


Loading…
Cancel
Save