Browse Source

Correct JackServer::DeadClient

git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@2395 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/1.90
sletz 17 years ago
parent
commit
7cd9cbbb48
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      common/JackServer.cpp

+ 3
- 1
common/JackServer.cpp View File

@@ -274,7 +274,9 @@ void JackServer::DeadClient(int refnum)
jack_log("JackServer::DeadClient ref = %ld", refnum);
if (fEngine->ClientDeactivate(refnum) < 0) {
jack_error("JackServer::DeadClient ref = %ld cannot be removed from the graph !!", refnum);
fEngine->ClientExternalClose(refnum);
}
if (fEngine->ClientExternalClose(refnum) < 0) {
jack_error("JackServer::DeadClient ref = %ld cannot be closed", refnum);
}
}



Loading…
Cancel
Save